0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

C#でImageListを使用する

Posted at

1. はじめに

  • アイコン画像をボタンなどに使用したい
  • Imageファイルを毎回読み込まず時、事前に登録しておきたい

2. 開発環境

  • Visual Studio 2022
  • .NET 6 (WindowsForm)
  • Windows 11

3. ImageListの配置

  • ツールボックスからImageListをFormにドラッグ&ドロップする
    image.png

  • ImageListが配置できる
    image.png

  • プロパティからImagesの(Collection)をクリックする
    image.png

image.png

  • 追加ボタンをクリックして、アイコンを選択する
    image.png

image.png

  • ImageListにアイコンが追加できる
    image.png

4. ImageListの利用

  • ツールボックスよりButtonを配置する
    image.png

  • プロパティよりImageListを設定する
    image.png

  • ImageIndexより使用するアイコンを選択する
    image.png

  • ImageAlign、TextAlignをそれぞれ調整する
    image.png

image.png

  • アイコン付きボタンが作成できる
    image.png

5. 参考文献

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?