titlebar

Windows Form with Resizing Frame and no Title Bar?

How can I hide the title bar from a Windows Form but still have a Resizing Frame? ...

How to draw custom button in Window Titlebar with Windows Forms?

How do you draw a custom button next to the minimize, maximize and close buttons within the Titlebar of the Form? I know you need to use Win32 API calls and override the WndProc procedure, but I haven't been able to figure out a solution that works right. Does anyone know how to do this? More specifically, does anyone know a way to do ...

How to add button to other apps window title bar (XP/Vista)

I have the handler of an open window which wasn't necessarily open by my process. How can I add a button to that window and make the button call a certain application (.exe) when clicked? The button could be next to the system menu or the minimize button. This should work for both XP and Vista (a different approach for each version is OK...

Drawing a toolbar on a window's titlebar

How do I draw a toolbar on the titlebar of a C# winforms window in windows vista? I have a window where it works, except when the window is unminimized/unmaximized it increases in size by about 16x32px. If possible, please provide code examples. ...

jQuery dialog theme and style

How do I change the title bar background color of jQuery dialog? I have looked at the themeroller but it does not seem to work for me. Thanks ...

Center title bar caption of Syncfusion WinForms ribbon form?

Is there a way to center-align the text in a WinForms form? Also known as the title bar caption or title bar text? So far the only way I can see to do it is pad the string with spaces. I am setting the title bar caption using the Form.Text property. I should add that I am using a 3rd party ribbon form, so the app looks like a Microsoft ...

How to get a CView based Windows that do not contain title bar and status bar

I am writing MFC application, I choose CView based application other then Dialog based application. I don't know how to remove title bar and status bar, is there any method to do this? And made a CView based application just like dialog based application ? Many thanks! ...

C# - How can I rename a process window that I started?

Is there any way I can rename the window titlebar of an application that I've launched? I.e. if I launched Notepad.exe, I could rename its title bar from "Untitled - Notepad" to "New Notepad Name". ...

How to change the title of a browser page which a servlet streamed a PDF to?

Hi my Java based webapp has a servlet which streams PDF content back to the browser based on request parameter. e.g. user clicks on an A tag with an href of "myApp/FetchPDFServlet?id=123". Servlet mapping picks up request, streams PDF data to response as mime-type application/pdf, closes flushes buffers. However the browser title ba...

How do I make the form partially transparent when moving?

How can I set the opacity of the winform to something like 50% while moving the form by draging the title bar and reset its opacity to 100% once left mouse button is up. ...

Text in Title Bar

How can we move text in the Title Bar of a form in C#.net using VS 2008? ...

Hide buttons from titlebar in Cocoa

Hi all! Let's see, Apples Human Interface Guidelines say: How do I make the very first titlebar in that image (with only a close-button). Disabling both 'Resize' and 'Minimize' in IB only make the resize/minimize buttons get disabled. But I want them to dissapear. How can I do that? Thanks in advance. ...

Switching a sizeable form between toolbar visible and not visible. VS.Net

I have a sizeable form that can be toggled between showing the toolbar and not. To hide the toolbar, I set ControlBox = False, and Text = "". If I toggle from toolbar visible to toolbar not visible, the form DialogResult is set to cancelled. Looking at the code at the Form's OnTextChanged method in reflector, I can see that the form's ...

QT4 Drag Window Without Title Bar

The application I'm working on has a custom UI that required me to remove the title bar from the main window. Unfortunately, I can't figure out how to make it so I can move the application on the screen :) The code I have which is removing the title bar is the following: MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent...

Can the Wicket modal window be customized?

I need to add a button to the title bar of a Wicket modal window. I can't find anything useful in the Wicket API that will help me. Is there any way to customize the title bar in this way? ...

QT: Hide the title bar of a dialog/window

I have a parent window in which a push-button's click event function has the following lines: SplashScreenDialog *splScrDlg = new SplashScreenDialog(this); splScrDlg->show(); What I want is I want to remove the maximize button, minimize button, close button and also the title bar from the dialog(or window). [Actually it is for a splash...

How to open new window without titlebar in javascript

How to open new window without titlebar. ...

Icons on Titlebar

Hi Everybody, I just found something really cool and i'm surprised i didn't really notice it sooner. Have you ever seen WordPad running on Windows 7? If you have, you'll notice that on the top-left of the window's titlebar are a few icons (save, undo/redo). On the actual titlebar itself! How cool is that? I was wondering how i would imp...

Visually remove/disable close button from title bar .NET

I have been asked to remove or disable the close button from our VB .NET 2005 MDI application. There are no native properties on a form that allow you to grey out the close button so the user cannot close it, and I do not remember seeing anything in the form class that will allow me to do this. Is there perhaps an API call or some magi...

How to remove the active title bar of a frame?

I have a JFrame which displays a title bar. Active title bar as it's called in Windows desktop properties. How to remove this bar? ...