Unplanned
Last Updated: 30 Mar 2016 13:45 by ADMIN
ADMIN
Dimitar
Created on: 24 Jul 2015 09:10
Category: Forms/Dialogs/Templates
Type: Bug Report
1
FIX. ShapedForm - the right border is flickering when the form is resized.
To reproduce:
public Form1()
{
    InitializeComponent();
  
    RadButton bt = new RadButton();
    bt.Dock = DockStyle.Right;
    bt.Parent = this;

    RadTitleBar tb = new RadTitleBar();
    tb.Dock = DockStyle.Top;
    tb.Parent = this;
    tb.Size = new Size(150, 100);

    this.Shape = new RoundRectShape(20);
    this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;    
} 
0 comments