ModernWPF.Chrome.SetShowCaptionText C# (CSharp) Method

SetShowCaptionText() public static method

Gets the value indicating whether to show caption text on the window.
public static SetShowCaptionText ( DependencyObject obj, bool value ) : void
obj System.Windows.DependencyObject The object.
value bool if set to true then show window title.
return void
        public static void SetShowCaptionText(DependencyObject obj, bool value)
        {
            if (obj == null) { throw new ArgumentNullException("obj"); }
            obj.SetValue(ShowCaptionTextProperty, value);
        }