mirror of https://github.com/AMT-Cheif/Stylet.git
25 lines
428 B
C#
25 lines
428 B
C#
using System;
|
|
|
|
namespace Stylet.Samples.HelloDialog
|
|
{
|
|
public class Dialog1ViewModel : Screen
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public Dialog1ViewModel()
|
|
{
|
|
this.DisplayName = "I'm Dialog 1";
|
|
}
|
|
|
|
public void Close()
|
|
{
|
|
this.RequestClose(null);
|
|
}
|
|
|
|
public void Save()
|
|
{
|
|
this.RequestClose(true);
|
|
}
|
|
}
|
|
}
|