Commit c789ec24 by 陶然

init

parent 55ffd28f
......@@ -6,3 +6,4 @@
/Src/bin/Debug
/Src/obj/Debug
/Src/packages
/Src/obj/Release
......@@ -218,6 +218,8 @@ namespace Kivii.Lims.ExcelToPdf
tbxServiceUserName.Text = config.ServiceUserName;
tbxServicePassword.Text = config.ServicePassword;
nudServiceTimeout.Value = config.ServiceTimeout;
tbxRouteStorage.Text = config.RouteStorage;
tbxQRCodeUrl.Text = config.QrCodeUrl;
}
#endregion
......@@ -427,14 +429,19 @@ namespace Kivii.Lims.ExcelToPdf
private void FrmServer_FormClosing(object sender, FormClosingEventArgs e)
{
e.Cancel = true;
this.Hide();
notify.BalloonTipText = "正在后台运行";
notify.Text = this.Text;
this.Visible= false;
notify.Visible = true;
//this.Hide();
notify.BalloonTipText = "后台运行";
notify.Text = $"{this.Text}-当前地址:{tbxServiceUrl.Text}";
notify.ShowBalloonTip(1000);
}
private void notify_MouseDoubleClick(object sender, MouseEventArgs e)
{
this.Visible = true;
this.Activate();
notify.Visible = false;
this.Show();
}
#endregion
......
......@@ -7,7 +7,7 @@
<ProjectGuid>{3F7974C4-333C-4CF5-A728-D321ABF14F18}</ProjectGuid>
<OutputType>WinExe</OutputType>
<RootNamespace>Kivii.Lims.ExcelToPdf</RootNamespace>
<AssemblyName>Kivii.Client.Lims.ExcelToPdf.V4.5</AssemblyName>
<AssemblyName>Office转PDF客户端</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<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