SVN-Revision: r805
This commit is contained in:
wyf
2025-06-27 09:20:56 +00:00
parent 595529dbdf
commit 15ae23c2e5
2 changed files with 33 additions and 32 deletions
+2 -1
View File
@@ -675,6 +675,7 @@ namespace Lskj.PubBillSpecial
this.splitMainControl.Panel2.Controls.Add(gridEx);
gridEx.SearchObj.SearchGrid();
gridEx.ObjPanel.Height = 46;
List<System.Windows.Forms.Control> deleteControls = new List<System.Windows.Forms.Control>();
foreach (System.Windows.Forms.Control item in gridEx.ObjPanel.Controls)
{
@@ -690,7 +691,7 @@ namespace Lskj.PubBillSpecial
int j = 0, x = 72;
foreach (System.Windows.Forms.Control item in gridEx.ObjPanel.Controls)
{
item.Location = new Point(gridEx.ObjPanel.Width - x - 10, item.Location.Y);
item.Location = new Point(gridEx.ObjPanel.Width - x - 10, (gridEx.ObjPanel.Height - item.Height) / 2);
item.Anchor = AnchorStyles.Top | AnchorStyles.Right;
x += 79;
j++;