DacpacExplorer.Pages.PropertiesPageBuilder.GetPropertyLabel C# (CSharp) Method

GetPropertyLabel() public static method

public static GetPropertyLabel ( string name, string val ) : UIElement
name string
val string
return UIElement
        public static UIElement GetPropertyLabel(string name, string val)
        {
            var displayText = string.Format("{0} = {1}", name, val);

            var label = new TextBox();
            label.Text = displayText;
            label.IsReadOnly = true;
            return label;
        }