Questions tagged [window-style]
40 questions
0
votes
2 answers
Start VLC maximized
I have this:
Process process = new Process();
string VLCPath = ConfigurationManager.AppSettings["VLCPath"];
process.StartInfo.FileName = VLCPath;
…

Bayern
- 330
- 3
- 20
0
votes
2 answers
Is there a window style that corresponds to a HWND's class menu?
Windows has a number of window styles that corresponds to attributes of a window, and SetWindowLongPtr, used with parameters GWL_EXSTYLE or GWL_STYLE, can be used to toggle these attributes ON/OFF. For example, WS_CAPTION can be used to toggle a…

lancery
- 658
- 1
- 6
- 18
0
votes
0 answers
Bitmap Style Designer: different font colors for different button state
I want to create custom window vsf style for my Inno Setup installer, where I need to change buttons font color depending on its state: focused, clicked or hovered.
Is it possible by customizing style in embarcadero Bitmap Style Designer?
I've…

Alexander Smith
- 369
- 2
- 16
0
votes
2 answers
Detect application windows
I use CBT Windows Hook to detect window creation/deletion/min-max/move-size events.
I works well, but I need to filter whose events coming from normal widgets. Practically I need to being notified by CBT hook only for those windows that the user…

Luca
- 11,646
- 11
- 70
- 125
0
votes
0 answers
Win32 Borderless Sleek Window Style (example in picture)
I've recently started learning Win32 programming and have practiced window styles. I looked at my windows... they looked very bleak and ordinary (I'm using Windows 7) so I want to add some uniqueness to them. After looking at other applications such…

Frank Lastname
- 62
- 8
0
votes
1 answer
OS X Yosemite window style mask NSFullSizeContentViewWindowMask cause only clicked button of collection view can call drawRect
My environment is OS X Yosemite 10.10.2.
Xcode are 6.1.1 and 6.2 beta4.
I wrote an calendar app for OS X. I used a cocoa bindings framework that I wrote. And I got
a problem. There should be only one focus day button in the collection view. But…
user3966167
0
votes
1 answer
Window styles / Minimal titlebar/borders
I'm looking for some kind of a resource (website) that would list all possible window/dialog frame styles and their respective combinations with images. I'm only really interested in Vista, as my software won't support older platforms anyway.
I have…

anon6439
- 1,857
- 1
- 18
- 18
0
votes
1 answer
Create custom chrome for a windows form in vb.net using Visual Basic 2008 express
How do you create custom chrome for a windows form in vb.net using Visual Basic 2008 express? I want to basically scrap what they give and start fresh, is there any way to do so easily?

Cyclone
- 17,939
- 45
- 124
- 193
0
votes
1 answer
Open registered url type from command prompt with window style hidden
I want to open an url type which I have registered in regedit. Namely:
swap://server:port/handle
I want to open it with WindowStyle = Hidden from command prompt. If I do it in C# it is easy:
Process p = new Process();
p.StartInfo.WindowStyle =…

Robin Rye
- 480
- 1
- 7
- 20
0
votes
1 answer
Cannot create window (CreateWindowEx) with existing child class
I have a parent window and a few child windows attached to this. With SpyXX I can see the children all have a certain style class, lets say ChildWindowClass.
When I create the window with the name of this particular class, CreateWindowEx returns a…

Horst Walter
- 13,663
- 32
- 126
- 228