You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
933 B
34 lines
933 B
|
4 years ago
|
using GalaSoft.MvvmLight;
|
||
|
|
|
||
|
|
namespace Audit.ViewModel
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// This class contains properties that the main View can data bind to.
|
||
|
|
/// <para>
|
||
|
|
/// Use the <strong>mvvminpc</strong> snippet to add bindable properties to this ViewModel.
|
||
|
|
/// </para>
|
||
|
|
/// <para>
|
||
|
|
/// You can also use Blend to data bind with the tool's support.
|
||
|
|
/// </para>
|
||
|
|
/// <para>
|
||
|
|
/// See http://www.galasoft.ch/mvvm
|
||
|
|
/// </para>
|
||
|
|
/// </summary>
|
||
|
|
public class MainViewModel : ViewModelBase
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the MainViewModel class.
|
||
|
|
/// </summary>
|
||
|
|
public MainViewModel()
|
||
|
|
{
|
||
|
|
////if (IsInDesignMode)
|
||
|
|
////{
|
||
|
|
//// // Code runs in Blend --> create design time data.
|
||
|
|
////}
|
||
|
|
////else
|
||
|
|
////{
|
||
|
|
//// // Code runs "for real"
|
||
|
|
////}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|