DacpacExplorer.Pages.PropertiesPageBuilder.GetPropertiesNameLabel C# (CSharp) 메소드

GetPropertiesNameLabel() 개인적인 정적인 메소드

private static GetPropertiesNameLabel ( string name ) : UIElement
name string
리턴 UIElement
        private static UIElement GetPropertiesNameLabel(string name)
        {
            var nameLabel = new Label();
            nameLabel.Content = name;
            nameLabel.Margin = new Thickness(0, 5, 0, 25);
            nameLabel.FontSize = 16.0;
            return nameLabel;
        }