Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Sep 23, 2024
1 parent 66999fe commit 426a0f4
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 23 deletions.
12 changes: 3 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,22 +343,16 @@ Similar to WPF UI.
private bool isChecked = true;

[ObservableProperty]
private bool isSelected;
private bool isSelected = false;

[ObservableProperty]
private bool isExpanded;
private bool isExpanded = false;

[ObservableProperty]
private ObservableCollection<Staff> staffList = [];

public Staff()
{
IsSelected = false;
IsExpanded = false;
}
}
```

- **TreeModelListView**

> TreeModelListView is a fast tree list view used `IEnumerable` and `ITreeModel` to display data but CURD is not fully supported.
Expand Down
10 changes: 2 additions & 8 deletions src/Wpf.Ui.Test/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -631,17 +631,11 @@ public partial class Staff : ObservableObject
private bool isChecked = true;

[ObservableProperty]
private bool isSelected;
private bool isSelected = false;

[ObservableProperty]
private bool isExpanded;
private bool isExpanded = false;

[ObservableProperty]
private ObservableCollection<Staff> staffList = [];

public Staff()
{
IsSelected = false;
IsExpanded = false;
}
}
6 changes: 3 additions & 3 deletions src/Wpf.Ui.Test/Wpf.Ui.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
<LangVersion>12.0</LangVersion>
<AssemblyVersion>3.0.5.13</AssemblyVersion>
<FileVersion>3.0.5.13</FileVersion>
<Version>$(VersionPrefix)3.0.5.13</Version>
<AssemblyVersion>3.0.5.14</AssemblyVersion>
<FileVersion>3.0.5.14</FileVersion>
<Version>$(VersionPrefix)3.0.5.14</Version>
<ApplicationIcon>Resources\Images\ProfilePicture.ico</ApplicationIcon>
</PropertyGroup>

Expand Down
6 changes: 3 additions & 3 deletions src/Wpf.Ui.Violeta/Wpf.Ui.Violeta.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<Nullable>enable</Nullable>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyVersion>3.0.5.13</AssemblyVersion>
<FileVersion>3.0.5.13</FileVersion>
<Version>$(VersionPrefix)3.0.5.13</Version>
<AssemblyVersion>3.0.5.14</AssemblyVersion>
<FileVersion>3.0.5.14</FileVersion>
<Version>$(VersionPrefix)3.0.5.14</Version>
<Authors>ema</Authors>
<Company>ema</Company>
<Description>WPF UI Violeta is based on WPF UI, and provides the Fluent experience in your known and loved WPF framework. Some new immersive controls like like `Toast`, `Flyout`, `ContentDialog`, `MessageBox` and etc.</Description>
Expand Down

0 comments on commit 426a0f4

Please sign in to comment.