DevExpress.OutlookInspiredApp.Win.ViewModel.MainViewModel.About C# (CSharp) 메소드

About() 개인적인 메소드

private About ( ) : void
리턴 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

예제 #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);
 }