Skip to content

Commit

Permalink
v22.06
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhaijun83 committed May 9, 2022
1 parent 5fecf32 commit 76ab42a
Show file tree
Hide file tree
Showing 9 changed files with 700 additions and 160 deletions.
Binary file modified .vs/QuickStart/v17/.suo
Binary file not shown.
39 changes: 39 additions & 0 deletions QuickStart/IniConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ class IniConfig
{
private string strButton_Name;
private string strButton_Visible;
private string strButton_Enable;
private string strButton_BackColor;
private string strButton_TextColor;
private string strProgram_Name;
private string strProgram_Type;
private string strProgram_Param;
Expand Down Expand Up @@ -37,6 +40,42 @@ public string Button_Visible
}
}

public string Button_Enable
{
get
{
return strButton_Enable;
}
set
{
strButton_Enable = value;
}
}

public string Button_BackColor
{
get
{
return strButton_BackColor;
}
set
{
strButton_BackColor = value;
}
}

public string Button_TextColor
{
get
{
return strButton_TextColor;
}
set
{
strButton_TextColor = value;
}
}

public string Program_Name
{
get
Expand Down
2 changes: 1 addition & 1 deletion QuickStart/Properties/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion QuickStart/Properties/Resources.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,6 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="Program_Build_Version_Text" xml:space="preserve">
<value>Build v22.05</value>
<value>Build v22.06</value>
</data>
</root>
46 changes: 23 additions & 23 deletions QuickStart/QuickStart.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 76ab42a

Please sign in to comment.