#260316 增加大屏图片;解决CSV解析文件占用问题;修复 自定义表格控件会超出区域的问题;

This commit is contained in:
zhengxuan.zhang
2026-03-16 14:35:02 +08:00
parent 94d6b65547
commit 0354dc622e
16 changed files with 44692 additions and 142 deletions
@@ -40,10 +40,10 @@ namespace NSAnalysis
// 设置窗体位置和大小
this.StartPosition = FormStartPosition.Manual;
this.Left = secondScreen.WorkingArea.Left;
this.Top = secondScreen.WorkingArea.Top;
this.Width = secondScreen.WorkingArea.Width;
this.Height = secondScreen.WorkingArea.Height;
this.Left = secondScreen.Bounds.Left;
this.Top = secondScreen.Bounds.Top;
this.Width = secondScreen.Bounds.Width;
this.Height = secondScreen.Bounds.Height;
this.Show();
}
catch { }