From 299013bc2d9eb529a309b3ee63e22ed24f87aebe Mon Sep 17 00:00:00 2001 From: lixiaojun <1287241240@qq.com> Date: 星期六, 12 十月 2024 18:45:39 +0800 Subject: [PATCH] 增减计算前提于切换 --- WinFrmUI/HStation.WinFrmUI.Xhs.Core/01-home/02-map/MapViewProjectListContainer.Designer.cs | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/01-home/02-map/MapViewProjectListContainer.Designer.cs b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/01-home/02-map/MapViewProjectListContainer.Designer.cs index bc6947c..c9dc27d 100644 --- a/WinFrmUI/HStation.WinFrmUI.Xhs.Core/01-home/02-map/MapViewProjectListContainer.Designer.cs +++ b/WinFrmUI/HStation.WinFrmUI.Xhs.Core/01-home/02-map/MapViewProjectListContainer.Designer.cs @@ -28,15 +28,18 @@ /// </summary> private void InitializeComponent() { - webViewControl1 = new Yw.WinFrmUI.WebViewControl(); + webViewControl1 = new WebViewControl(); SuspendLayout(); // // webViewControl1 // + webViewControl1.BorderColor = Color.LightGray; + webViewControl1.BorderWidth = 1; webViewControl1.Dock = DockStyle.Fill; - webViewControl1.Location = new Point(0, 0); + webViewControl1.Location = new Point(1, 1); webViewControl1.Name = "webViewControl1"; - webViewControl1.Size = new Size(150, 150); + webViewControl1.ShowBorder = true; + webViewControl1.Size = new Size(148, 148); webViewControl1.TabIndex = 0; // // MapViewProjectListContainer @@ -45,6 +48,7 @@ AutoScaleMode = AutoScaleMode.Font; Controls.Add(webViewControl1); Name = "MapViewProjectListContainer"; + Padding = new Padding(1); ResumeLayout(false); } -- Gitblit v1.9.3