ModernWPF.Chrome.GetShowControlBoxes C# (CSharp) Method

GetShowControlBoxes() public static method

Gets whether to show control boxes in ModernWindow style.
public static GetShowControlBoxes ( DependencyObject obj ) : bool
obj System.Windows.DependencyObject The object.
return bool
        public static bool GetShowControlBoxes(DependencyObject obj)
        {
            if (obj == null) { throw new ArgumentNullException("obj"); }
            return (bool)obj.GetValue(ShowControlBoxesProperty);
        }