Make used room smaller.

This commit is contained in:
Bruce
2026-04-14 16:32:45 +08:00
parent 686e08199c
commit 9fbcbdd7e9
7 changed files with 29 additions and 10633 deletions

View File

@@ -41,7 +41,6 @@
this.Name = "ManagerShell";
this.PageScale = 125;
this.Text = "Form1";
this.WindowIcon = ((System.Drawing.Icon)(resources.GetObject("$this.WindowIcon")));
this.Load += new System.EventHandler(this.ManagerShell_Load);
this.Resize += new System.EventHandler(this.ManagerShell_Resize);
this.ResumeLayout(false);

View File

@@ -28,6 +28,20 @@ namespace Manager
InitSize ();
Text = Bridge.ResXmlStore.StringRes.Get ("MANAGER_APPTITLE");
this.Load += Form_Load;
try
{
if (this is WAShell.ModernForm)
{
this.WindowIcon = new Icon (Path.Combine (AppDomain.CurrentDomain.BaseDirectory, "icons\\32_manager.ico"));
}
}
catch
{
if (this is WAShell.ModernForm)
{
this.WindowIcon = this.Icon;
}
}
}
private void InitSize ()
{

File diff suppressed because it is too large Load Diff

View File

@@ -41,7 +41,6 @@
this.Name = "ReaderShell";
this.PageScale = 125;
this.Text = "Form1";
this.WindowIcon = ((System.Drawing.Icon)(resources.GetObject("$this.WindowIcon")));
this.Load += new System.EventHandler(this.ManagerShell_Load);
this.Resize += new System.EventHandler(this.ManagerShell_Resize);
this.ResumeLayout(false);

View File

@@ -28,6 +28,20 @@ namespace Reader
InitSize ();
Text = Bridge.ResXmlStore.StringRes.Get ("READER_APPTITLE");
this.Load += Form_Load;
try
{
if (this is WAShell.ModernForm)
{
this.WindowIcon = new Icon (Path.Combine (AppDomain.CurrentDomain.BaseDirectory, "icons\\32_reader.ico"));
}
}
catch
{
if (this is WAShell.ModernForm)
{
this.WindowIcon = this.Icon;
}
}
}
private void InitSize ()
{

File diff suppressed because it is too large Load Diff

View File

@@ -1 +1 @@
1.0.0.0
1.0.0.1