Skip to content

Commit

Permalink
Merge version 0.5.1
Browse files Browse the repository at this point in the history
bump version 0.5.1
  • Loading branch information
syminomega authored Jun 26, 2022
2 parents fe54378 + 5c1ad04 commit b8b1d28
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 0 deletions.
18 changes: 18 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,24 @@ Currently is in early preview stage. **Pull requests are not available at this m

![Styles Demo](./Images/StylesDemo.jpg)

## Quick Start 快速使用
1. Add SyminData and SyminUI reference to your project.\
在项目中添加 SyminData 和 SyminUI 引用.
2. Add these code to App.xaml.\
将以下代码添加至 App.xaml 中。

```
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/SyminUI;component/Themes/SyminLight.xaml"/>
<ResourceDictionary Source="pack://application:,,,/SyminUI;component/Themes/SyminBasic.xaml"/>
<ResourceDictionary Source="pack://application:,,,/SyminUI;component/Themes/SyminStyle.xaml"/>
<ResourceDictionary Source="pack://application:,,,/SyminUI;component/Themes/SyminExtra.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
```
## Known Issues 已知问题
+ Progress bar vertical style does not show shader effect.\
进度条垂直样式不显示辉光效果。
Expand Down
1 change: 1 addition & 0 deletions SyminData/SyminData.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>0.5.1</Version>
</PropertyGroup>

</Project>
2 changes: 2 additions & 0 deletions SyminUI/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Reflection;
using System.Runtime.InteropServices;

[assembly: System.Windows.ThemeInfo(System.Windows.ResourceDictionaryLocation.None, System.Windows.ResourceDictionaryLocation.SourceAssembly)]
Expand All @@ -14,3 +15,4 @@
// 如果此项目向 COM 公开,则下列 GUID 用于 typelib 的 ID。

[assembly: Guid("4bb0f21d-2e29-48f9-829f-eafa8e6cc27b")]

1 change: 1 addition & 0 deletions SyminUI/SyminUI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<Version>0.5.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down
1 change: 1 addition & 0 deletions SyminViewTest/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Reflection;
using System.Windows;

[assembly: ThemeInfo(
Expand Down
1 change: 1 addition & 0 deletions SyminViewTest/SyminViewTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<Version>0.5.1</Version>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit b8b1d28

Please sign in to comment.