Hello,
Winforms.
I have an application whereby I am creating a pop up window with a new rad form. My first dilemma was when I applied themes globally and I use the "Aqua" theme, I need to get the text to align left with the form set at FixedDialog.
I then started adding a RadTitle bar which sort of resolved the problem, however when I applied the "Aqua" theme and any other theme I lost the pop up border as seen in image and here are some settings in the load event
Now when I set the settings in the form load to change the form border and I get two titles in the form.
Winforms.
I have an application whereby I am creating a pop up window with a new rad form. My first dilemma was when I applied themes globally and I use the "Aqua" theme, I need to get the text to align left with the form set at FixedDialog.
I then started adding a RadTitle bar which sort of resolved the problem, however when I applied the "Aqua" theme and any other theme I lost the pop up border as seen in image and here are some settings in the load event
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.MaximizeBox = false;
this.MinimizeBox = false;
Size = new Size(422, 433);
Assistant.CenterFormOnScreen(this);
this.Text = "Aqua Theme";
Also not the circle on the left is gray and the Aqua theme makes it red with an x when you mouse over it.
Now when I set the settings in the form load to change the form border and I get two titles in the form.
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
Size = new Size(422, 433);
Assistant.CenterFormOnScreen(this);
this.Text = "Aqua Theme";
It is an MDI application and these are pop up forms.
Can someone tell me if this is normal or what other settings am I missing.
Thanks
Chom