Tagged Questions
The formborderstyle tag has no wiki summary.
3
votes
1answer
2k views
C# Form with custom border and rounded edges
I am using this code to make my form (FormBorderStyle=none) with rounded edges:
[DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")]
private static extern IntPtr CreateRoundRectRgn
(
int ...
2
votes
5answers
2k views
C# Anchor property doesn't seem to work
I added some controls to my form and changed Anchor property how I'd expect this to work, but when I resize the form at the runtime, the controls stay at the same place.
For example, I have two ...
1
vote
2answers
52 views
Form can be sized/dragged to a larger size but cannot be sized/dragged back to a smaller size
I have this simple problem and I have tried searching for answers but came up empty handed.
See, I have this small program that has FormBorderStyle set to "Sizeable". My problem is that it can only ...
1
vote
4answers
278 views
Winforms border style
I am trying to make a form with a border like the border on the Windows Vista volume control. The form would need to be resizeable as well.
Thanks, giodamelio
To be a little more clear about what ...
1
vote
2answers
93 views
My WindowsFormsApplication going behind of all application
I developed a WindowsFormsApplication having a Form of Border Style as "FixedToolWindow", now the problem is while I am going to minimize any other opened application then my application going behind ...
1
vote
2answers
196 views
Form.FormBorderStyle Native Exception Access violation
On a WindowsCE platform (custom build) our C# gui uses regular forms to show an "popup menu".
We set the FormBorderstyle to None as we don't want the form controls to be visible.
Some clients ...
1
vote
3answers
3k views
Resize WinForm, with no border?
Does anyone know how I can resize a winform when it has no border. I don't want the default border that Windows has, so I changed the property "FormBorderStyle" to "None". This removed the border, ...
1
vote
3answers
2k views
move a c# form without border style
I am trying to move c# form without title bar. I found an article about it on http://www.codeproject.com/KB/cs/csharpmovewindow.aspx
it works as long as I do not set FormBorderStyle as "None". It ...
0
votes
1answer
41 views
CSS: Solid border with Panel creates scrollable panel
I am using Vaadin to create my front-end and when i add the border-style:solid to style.css page, i end up with a scrollable v-panel? How can i add the solid style while removing the scrollable ...
0
votes
2answers
194 views
Borderless form shows borders for a moment when shown inside an mdi container
Update (2011-01-17):
I am creating a form with FormBorderStyle=None inside an MdiContainer.
When I show the first form, even if it has already been created, for a fraction of a second it appears ...
0
votes
5answers
168 views
css : where are the white background borders on textboxes coming from?
I have the following page:
http://www.jameschang.com/faxlogic/
where the textboxes have these white borders on on their 4 corners in the upper right login section.
I have the following css ...
0
votes
1answer
281 views
Form for Telerik RadRibbonBar?
I got the Telerik RadRibbonBar for free with the Express edition of vb a while back, but it did not come with any sort of form. It also, unfortunately, has the control buttons there automatically. How ...