Skip to content

Commit e1c7128

Browse files
committed
feat: add RelayCommandAttribute and implement it for ViewModel's
1 parent 8f12411 commit e1c7128

26 files changed

+1354
-227
lines changed

README.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This is a base libraries for building WPF application with the MVVM design patte
2828

2929
## Requirements
3030

31-
[.NET 8 - Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
31+
[.NET 9 - Desktop Runtime](https://dotnet.microsoft.com/en-us/download/dotnet/9.0)
3232

3333
## NuGet Packages Provided in this Repository
3434

@@ -150,6 +150,16 @@ Therefore run the `Atc.Wpf.Sample` application to explore all the controls and c
150150

151151
- [ValueConverters](src/Atc.Wpf.Theming/ValueConverters/@Readme.md)
152152

153+
### Source Generators
154+
155+
In MVVM, certain attributes help automate boilerplate code using source generators.
156+
157+
Example for ViewModel classes
158+
159+
![MVVM Source Generation](docs/images/mvvm-source-generated.png)
160+
161+
For more details, see the [MVVM](src/Atc.Wpf/Mvvm/@Readme.md) section.
162+
153163
## How to contribute
154164

155165
[Contribution Guidelines](https://atc-net.github.io/introduction/about-atc#how-to-contribute)

docs/images/mvvm-source-generated.png

422 KB
Loading

sample/Atc.Wpf.Sample/GlobalUsings.cs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
global using System.Globalization;
99
global using System.IO;
1010
global using System.Runtime.CompilerServices;
11+
global using System.Text;
1112
global using System.Text.Json;
1213
global using System.Windows;
1314
global using System.Windows.Controls;

sample/Atc.Wpf.Sample/SamplesWpf/Mvvm/PersonView.xaml

+9-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
77
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
88
xmlns:mvvm="clr-namespace:Atc.Wpf.Sample.SamplesWpf.Mvvm"
9-
d:DesignHeight="450"
9+
d:DesignHeight="550"
1010
d:DesignWidth="800"
1111
mc:Ignorable="d">
1212

@@ -48,6 +48,14 @@
4848

4949
<atc:LabelTextInfo LabelText="FullName" Text="{Binding Path=FullName}" />
5050

51+
<atc:UniformSpacingPanel
52+
HorizontalAlignment="Center"
53+
HorizontalSpacing="50"
54+
Orientation="Horizontal">
55+
<Button Command="{Binding Path=ShowDataCommand}" Content="Show data" />
56+
<Button Command="{Binding Path=SaveHandlerCommand}" Content="Save data" />
57+
</atc:UniformSpacingPanel>
58+
5159
</atc:UniformSpacingPanel>
5260

5361
</ScrollViewer>

sample/Atc.Wpf.Sample/SamplesWpf/Mvvm/PersonViewModel.cs

+62
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,66 @@ public partial class PersonViewModel : ViewModelBase
2525
private string? myTestProperty;
2626

2727
public string FullName => $"{FirstName} {LastName}";
28+
29+
[RelayCommand]
30+
public void ShowData()
31+
{
32+
var sb = new StringBuilder();
33+
sb.Append("FirstName: ");
34+
sb.AppendLine(FirstName);
35+
sb.Append("LastName: ");
36+
sb.AppendLine(LastName);
37+
sb.Append("Age: ");
38+
sb.AppendLine(Age.ToString(GlobalizationConstants.EnglishCultureInfo));
39+
sb.Append("Email: ");
40+
sb.AppendLine(Email);
41+
sb.Append("TheProperty: ");
42+
sb.AppendLine(TheProperty);
43+
44+
var dialogBox = new InfoDialogBox(
45+
Application.Current.MainWindow!,
46+
new DialogBoxSettings(DialogBoxType.Ok)
47+
{
48+
Height = 300,
49+
},
50+
sb.ToString());
51+
52+
dialogBox.ShowDialog();
53+
}
54+
55+
[RelayCommand(CanExecute = nameof(CanSaveHandler))]
56+
public void SaveHandler()
57+
{
58+
var dialogBox = new InfoDialogBox(
59+
Application.Current.MainWindow!,
60+
new DialogBoxSettings(DialogBoxType.Ok),
61+
"Hallo to SaveHandler method");
62+
63+
dialogBox.Show();
64+
}
65+
66+
public bool CanSaveHandler()
67+
{
68+
if (string.IsNullOrWhiteSpace(FirstName))
69+
{
70+
return false;
71+
}
72+
73+
if (string.IsNullOrWhiteSpace(LastName))
74+
{
75+
return false;
76+
}
77+
78+
if (Age is < 18 or > 120)
79+
{
80+
return false;
81+
}
82+
83+
if (Email is not null && !Email.IsEmailAddress())
84+
{
85+
return false;
86+
}
87+
88+
return true;
89+
}
2890
}

src/Atc.Wpf.SourceGenerators/Extensions/AttributeDataExtensions.cs

-136
This file was deleted.

0 commit comments

Comments
 (0)