Commit c789ec24 by 陶然

init

parent 55ffd28f
...@@ -6,3 +6,4 @@ ...@@ -6,3 +6,4 @@
/Src/bin/Debug /Src/bin/Debug
/Src/obj/Debug /Src/obj/Debug
/Src/packages /Src/packages
/Src/obj/Release
...@@ -218,6 +218,8 @@ namespace Kivii.Lims.ExcelToPdf ...@@ -218,6 +218,8 @@ namespace Kivii.Lims.ExcelToPdf
tbxServiceUserName.Text = config.ServiceUserName; tbxServiceUserName.Text = config.ServiceUserName;
tbxServicePassword.Text = config.ServicePassword; tbxServicePassword.Text = config.ServicePassword;
nudServiceTimeout.Value = config.ServiceTimeout; nudServiceTimeout.Value = config.ServiceTimeout;
tbxRouteStorage.Text = config.RouteStorage;
tbxQRCodeUrl.Text = config.QrCodeUrl;
} }
#endregion #endregion
...@@ -427,14 +429,19 @@ namespace Kivii.Lims.ExcelToPdf ...@@ -427,14 +429,19 @@ namespace Kivii.Lims.ExcelToPdf
private void FrmServer_FormClosing(object sender, FormClosingEventArgs e) private void FrmServer_FormClosing(object sender, FormClosingEventArgs e)
{ {
e.Cancel = true; e.Cancel = true;
this.Hide(); this.Visible= false;
notify.BalloonTipText = "正在后台运行"; notify.Visible = true;
notify.Text = this.Text; //this.Hide();
notify.BalloonTipText = "后台运行";
notify.Text = $"{this.Text}-当前地址:{tbxServiceUrl.Text}";
notify.ShowBalloonTip(1000); notify.ShowBalloonTip(1000);
} }
private void notify_MouseDoubleClick(object sender, MouseEventArgs e) private void notify_MouseDoubleClick(object sender, MouseEventArgs e)
{ {
this.Visible = true;
this.Activate();
notify.Visible = false;
this.Show(); this.Show();
} }
#endregion #endregion
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<ProjectGuid>{3F7974C4-333C-4CF5-A728-D321ABF14F18}</ProjectGuid> <ProjectGuid>{3F7974C4-333C-4CF5-A728-D321ABF14F18}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<RootNamespace>Kivii.Lims.ExcelToPdf</RootNamespace> <RootNamespace>Kivii.Lims.ExcelToPdf</RootNamespace>
<AssemblyName>Kivii.Client.Lims.ExcelToPdf.V4.5</AssemblyName> <AssemblyName>Office转PDF客户端</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion> <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<Deterministic>true</Deterministic> <Deterministic>true</Deterministic>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment