約5,370件1ページ目

日本語のみで絞り込む

Initializes the window-creation parameter record when the form window is created. The CreateWnd method calls CreateParams to initialize the parameters it ...

2015/3/31 -The simplest solution is to pass the parameter to the form in its constructor, rather than wait until it has finished being created.

Initializes a window-creation parameter data structure. The CreateWnd method calls CreateParams to initialize the parameters it passes to CreateWindowHandle.

2013/9/29 -I override TForm.CreateParams .but I found excute order is first:B then A .B------>A So CreateParams do not take effect. in delphi it excute order is first:A ...

2021/1/18 -CreateParams(var Params: TCreateParams); begin inherited; Params.ExStyle := Params.ExStyle or WS_EX_APPWINDOW; Params.WndParent := 0; end ...

2009/9/7 -In this demo we dynamically create a TMyNewPanel on a form so that you can experiment with resizing it by dragging its borders.

CreateParams is a virtual method of TForm. This means you can override it which, in turn, means you can change the default style of a window when it's created ...

I've overriden the CreateParams method and entered the code you told me. The windows stay on top of the main form. If I use the desktop icon on the task bar in ...

CreateParams is an inherited procedure that wraps the WinAPI functions CreateWindow and CreateWindowEx that are responsible for a window's initial appearance.

2009/8/12 -In this demo we'll create a new transparent group box ( TGroupBoxEx ) and, to demonstrate a transparent TGraphicControl s, a new transparent label ( TLabelEx ).