約5,640件1ページ目

日本語のみで絞り込む

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

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

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.

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 ...

2005/7/5 -Hello. I had problems in my app before because my forms are StayOnTop, and I change it to fsNormal style and override CreateParams method:.

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 ...

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

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 ...