DevExpress.OutlookInspiredApp.Win.ViewModel.MainViewModel.About C# (CSharp) Method

About() private method

private About ( ) : void
return void
        public void About() {
            DevExpress.Utils.About.AboutHelper.Show(DevExpress.Utils.About.ProductKind.DXperienceWin,
                new DevExpress.Utils.About.ProductStringInfoWin("Outlook Inspired App"));
        }
        #endregion

Usage Example

Exemplo n.º 1
0
 void BindCommands(MainViewModel viewModel) {
     biGetStarted.BindCommand(() => viewModel.GetStarted(), viewModel);
     biGetSupport.BindCommand(() => viewModel.GetSupport(), viewModel);
     biBuyNow.BindCommand(() => viewModel.BuyNow(), viewModel);
     biAbout.BindCommand(() => viewModel.About(), viewModel);
 }