Skip to content

Commit 156a351

Browse files
committed
SampleApp modification
1 parent 8cbe971 commit 156a351

14 files changed

+55
-35
lines changed
673 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

source/Inkore.UI.WinForms.Styler.SampleApp/Main.Designer.cs

+24-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

source/Inkore.UI.WinForms.Styler.SampleApp/Main.cs

+3-1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ public Main()
6464
Caption = "Search",
6565
GripSettings = GripperSettings.Always
6666
});
67+
68+
advComboBox1.SelectedIndex = 0;
6769
}
6870

6971
protected override void OnShown(EventArgs e)
@@ -228,7 +230,7 @@ private void ShowTaskDialog()
228230
dialog.MainInstruction = "This is an example task dialog.";
229231
dialog.Content = "Task dialogs are a more flexible type of message box. Among other things, task dialogs support custom buttons, command links, scroll bars, expandable sections, radio buttons, a check box (useful for e.g. \"don't show this again\"), custom icons, and a footer. Some of those things are demonstrated here.";
230232
dialog.ExpandedInformation = "Ookii.org's Task Dialog doesn't just provide a wrapper for the native Task Dialog API; it is designed to provide a programming interface that is natural to .Net developers.";
231-
dialog.Footer = "Task Dialogs support footers and can even include <a href=\"http://www.ookii.org\">hyperlinks</a>.";
233+
dialog.Footer = "Task Dialogs support footers and can even include <a href=\"https://github.com/InkoreStudios/UI.WinForms.Styler\">hyperlinks</a>.";
232234
dialog.FooterIcon = TaskDialogIcon.Information;
233235
dialog.EnableHyperlinks = true;
234236
TaskDialogButton customButton = new TaskDialogButton("A custom button");

source/Inkore.UI.WinForms.Styler.SampleApp/Main.resx

+2-2
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
AAEAAAD/////AQAAAAAAAAAMAgAAAEZTeXN0ZW0uV2luZG93cy5Gb3JtcywgQ3VsdHVyZT1uZXV0cmFs
126126
LCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAAAmU3lzdGVtLldpbmRvd3MuRm9ybXMu
127127
SW1hZ2VMaXN0U3RyZWFtZXIBAAAABERhdGEHAgIAAAAJAwAAAA8DAAAANiMAAAJNU0Z0AUkBTAIBAQsB
128-
AAF0AQIBdAECARABAAEQAQAE/wEhAQAI/wFCAU0BNgcAATYDAAEoAwABQAMAATADAAEBAQABIAYAATAm
128+
AAGEAQIBhAECARABAAEQAQAE/wEhAQAI/wFCAU0BNgcAATYDAAEoAwABQAMAATADAAEBAQABIAYAATAm
129129
AAT/A7IB/wOyAf8DwAH/AyUB/wPjAf8D8Qn/XAABJQIAAv8BmQElAv8BJQEAAf8BAAIlAf8BAAHMAv8B
130130
AAHMAv8BJQIAAf9gAAOZAv8B7AHMAf8B8AHKAaYB/wHwAcoBpgH/AfABygGmAf8CzAGZAf8DlgH/A5YB
131131
/wPxAf8D8QX/GAADNgH/AzYB/wGkAqAB/wMlAf8oAAElAgAC/wGZASUC/wGZASUC/wGZASUC/wElAQAB
@@ -289,7 +289,7 @@
289289
AAEAAAD/////AQAAAAAAAAAMAgAAAEZTeXN0ZW0uV2luZG93cy5Gb3JtcywgQ3VsdHVyZT1uZXV0cmFs
290290
LCBQdWJsaWNLZXlUb2tlbj1iNzdhNWM1NjE5MzRlMDg5BQEAAAAmU3lzdGVtLldpbmRvd3MuRm9ybXMu
291291
SW1hZ2VMaXN0U3RyZWFtZXIBAAAABERhdGEHAgIAAAAJAwAAAA8DAAAAyKIAAAJNU0Z0AUkBTAIBAQsB
292-
AAF0AQIBdAECASABAAEgAQAE/wEhAQAI/wFCAU0BNgcAATYDAAEoAwABgAMAAWADAAEBAQABIAYAAcA2
292+
AAGEAQIBhAECASABAAEgAQAE/wEhAQAI/wFCAU0BNgcAATYDAAEoAwABgAMAAWADAAEBAQABIAYAAcA2
293293
AAMqAUADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cB
294294
gANHAYADRwGAA0cBgAMqAUC0AAMqAUABRwJGAYACRwFGAYADRwGAA0cBgAJHAUYBgANHAYABRgJHAYAB
295295
RgJHAYABRgJHAYABRgJHAYABRgJHAYADRwGAAUcCRgGAAyoBQMQAA0cBgAT/A9kB/wOyAf8DsgH/A7IB

source/Inkore.UI.WinForms.Styler/Controls/ThemeText/ThemedLabel.cs

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
using Inkore.UI.WinForms.Styler.Controls.ThemeText.Options;
1818
using System.Windows.Forms.VisualStyles;
1919
using Inkore.UI.WinForms.Styler.ThemeText;
20-
using Inkore.UI.WinForms.Styler.Controls.ThemeText.Options;
2120

2221
namespace Inkore.UI.WinForms.Styler.Controls.ThemeText
2322
{
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,32 @@
11
using System.Reflection;
22
using System.Runtime.CompilerServices;
33
using System.Runtime.InteropServices;
4-
[assembly: AssemblyTrademark("NotYoojun.!")]
5-
[assembly: AssemblyCulture("")]
64

7-
// Setting ComVisible to false makes the types in this assembly not visible
8-
// to COM components. If you need to access a type in this assembly from
9-
// COM, set the ComVisible attribute to true on that type.
5+
// 有关程序集的一般信息由以下
6+
// 控制。更改这些特性值可修改
7+
// 与程序集关联的信息。
8+
[assembly: AssemblyTitle("Inkore.UI.WinForms.Styler")]
9+
[assembly: AssemblyDescription("A Windows Forms library that provides native controls with many of the advanced features.")]
10+
[assembly: AssemblyConfiguration("")]
11+
[assembly: AssemblyCompany("iNKORE! Studios")]
12+
[assembly: AssemblyProduct("Inkore.UI.WinForms.Styler")]
13+
[assembly: AssemblyCopyright("Copyright © iNKORE! Studios 2023")]
14+
[assembly: AssemblyTrademark("iNKORE! Studios")]
15+
[assembly: AssemblyCulture("")]
16+
//将 ComVisible 设置为 false 将使此程序集中的类型
17+
//对 COM 组件不可见。 如果需要从 COM 访问此程序集中的类型,
18+
//请将此类型的 ComVisible 特性设置为 true。
1019
[assembly: ComVisible(false)]
1120

12-
// The following GUID is for the ID of the typelib if this project is exposed to COM
13-
[assembly: Guid("8242761c-2498-46e6-9a85-f3f6a9b9e3f2")]
21+
// 如果此项目向 COM 公开,则下列 GUID 用于类型库的 ID
22+
[assembly: Guid("8430123f-0cd7-41fb-a004-130cdde455ac")]
23+
24+
// 程序集的版本信息由下列四个值组成:
25+
//
26+
// 主版本
27+
// 次版本
28+
// 生成号
29+
// 修订号
30+
//
31+
[assembly: AssemblyVersion("1.0.0.0")]
32+
[assembly: AssemblyFileVersion("1.0.0.0")]

0 commit comments

Comments
 (0)