We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 982c240 commit 494d9f5Copy full SHA for 494d9f5
Part 2 - MVVM/README.zh-cn.md
@@ -53,8 +53,8 @@ public void OnPropertyChanged([CallerMemberName] string name = null) =>
53
```csharp
54
public class BaseViewModel : INotifyPropertyChanged
55
{
56
- public partial bool IsBusy { get; set; }
57
- public partial string Title { get; set; }
+ bool isBusy;
+ string title;
58
//...
59
}
60
```
Part 2 - MVVM/README.zh-tw.md
0 commit comments