fix few things

This commit is contained in:
2022-07-01 22:12:50 +02:00
parent e000a8e1d3
commit b99ae27376
4 changed files with 8 additions and 24 deletions

View File

@@ -1,28 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<configuration> <configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Collections.Immutable" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-1.2.5.0" newVersion="1.2.5.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Linq.Async" publicKeyToken="94bc3704cddfc263" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.1.0.0" newVersion="4.1.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<appSettings> <appSettings>
<add key="TelerikWinFormsThemeName" value="Office2019Dark" /> <add key="TelerikWinFormsThemeName" value="Office2019Dark" />
</appSettings> </appSettings>

View File

@@ -161,6 +161,7 @@ namespace Pilz.Updating.Administration.GUI
// radButton_Accept // radButton_Accept
// //
this.radButton_Accept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.radButton_Accept.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.radButton_Accept.DialogResult = System.Windows.Forms.DialogResult.OK;
this.radButton_Accept.Image = global::Pilz.Updating.Administration.GUI.My.Resources.Resources.icons8_checkmark_16px; this.radButton_Accept.Image = global::Pilz.Updating.Administration.GUI.My.Resources.Resources.icons8_checkmark_16px;
this.radButton_Accept.ImageAlignment = System.Drawing.ContentAlignment.MiddleRight; this.radButton_Accept.ImageAlignment = System.Drawing.ContentAlignment.MiddleRight;
this.radButton_Accept.Location = new System.Drawing.Point(229, 87); this.radButton_Accept.Location = new System.Drawing.Point(229, 87);
@@ -170,6 +171,7 @@ namespace Pilz.Updating.Administration.GUI
this.radButton_Accept.Text = "Okay"; this.radButton_Accept.Text = "Okay";
this.radButton_Accept.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft; this.radButton_Accept.TextAlignment = System.Drawing.ContentAlignment.MiddleLeft;
this.radButton_Accept.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.radButton_Accept.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.radButton_Accept.Click += new System.EventHandler(this.radButton_Accept_Click);
// //
// ApplicationVersionInput // ApplicationVersionInput
// //

View File

@@ -67,5 +67,10 @@ namespace Pilz.Updating.Administration.GUI
radSpinEditor_Build.Value = value; radSpinEditor_Build.Value = value;
} }
} }
private void radButton_Accept_Click(object sender, EventArgs e)
{
}
} }
} }

View File

@@ -43,7 +43,7 @@ namespace Pilz.Updating.Administration.GUI
} }
set set
{ {
radRichTextEditor_Description.Text = value; radRichTextEditor_Description.Text = value ?? String.Empty;
} }
} }