Dynamo.Controls.DynamoView.DynamoViewModelRequestAboutWindow C# (CSharp) Method

DynamoViewModelRequestAboutWindow() private method

private DynamoViewModelRequestAboutWindow ( DynamoViewModel model ) : void
model DynamoViewModel
return void
        private void DynamoViewModelRequestAboutWindow(DynamoViewModel model)
        {
            var aboutWindow = model.BrandingResourceProvider.CreateAboutBox(model);
            aboutWindow.Owner = this;
            aboutWindow.WindowStartupLocation = WindowStartupLocation.CenterOwner;
            aboutWindow.ShowDialog();
        }
DynamoView