OdessaGUIProject.HighlightDetailsForm.HighlightDetailsForm C# (CSharp) Method

HighlightDetailsForm() public method

public HighlightDetailsForm ( ) : System
return System
        public HighlightDetailsForm()
        {
            InitializeComponent();

            //3. Ignore a windows erase message to reduce flicker. (http://social.microsoft.com/Forums/en-US/Offtopic/thread/fa0d5277-eb83-4e3e-a2d4-bb00270594a9/)
            // doesn't seem to help
            SetStyle(ControlStyles.AllPaintingInWmPaint, true);

            DesignLanguage.ApplyCustomFont(Controls);

            _borderlessWindow = new BorderlessWindow(this, true, true);
            _borderlessWindow.SendNCWinMessage += SendNCWinMessage;
            MaximizedBounds = Screen.GetWorkingArea(this);

            titleTextBox.Text = "";
        }
HighlightDetailsForm