Textblock and textbox with the same source

This commit is contained in:
2020-07-05 22:59:37 +02:00
parent 7254941c18
commit 244933b79f
2 changed files with 33 additions and 4 deletions

View File

@ -9,6 +9,16 @@ namespace WPFUI.ViewModels
{
public class ShellViewModel : Screen
{
private string _firstName = "Tommy";
public string FirstName
{
get {
return _firstName;
}
set {
_firstName = value;
}
}
}
}