Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これが私のコードです:
Form1.Picture = LoadPicture("C:\Users\User\Desktop\1xxx-LOGO-brand-.jpg", , , 913, 486)
このコードを使用して、画像を正常にロードしました。ただし、X 座標と Y 座標は機能しませんでした。デフォルト座標 (0,0).a での IT 負荷
フォーム内に読み込まれる画像の場所を設定するにはどうすればよいですか?
ありがとう
の X/Y パラメータはLoadPicture()、アイコンまたはカーソル ファイルから抽出する幅/高さを参照します。だから、それはあなたが望むものではありません。
LoadPicture()
代わりに、を toおよびtoに設定し、次Form1のコード行を使用します。AutoRedrawTrueScaleMode3 - Pixel
Form1
AutoRedraw
True
ScaleMode
3 - Pixel
Form1.PaintPicture LoadPicture("C:\Users\User\Desktop\1xxx-LOGO-brand-.jpg"), 913, 486