0
0

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 3 years have passed since last update.

Gtk3アプリ GtkMenuを利用する

Last updated at Posted at 2021-09-29

###GtkMenuを利用する

####GtkMenu設置例
Screenshot from 2021-09-29 15-12-01.png
######コンテナーからGtkMenuBarを設置する
Screenshot from 2021-09-29 15-10-27.png
#####パッキングで位置を指定する
0を指定します。高さは共通から設定します。
Screenshot from 2021-09-29 15-11-35.png
#####MenuItemにイベントを追加する
ファイルにイベントを追加してみます。
Screenshot from 2021-09-29 15-19-13.png
activateにイベントを追加する。selectは選択した状態で反応します。
Screenshot from 2021-09-29 15-11-03.png
C#側にもコールバック関数を書きます。

private void on_newBtn_activate(object sender , EventArgs e){
	Console.WriteLine(" on_newBtn_activate ");
}

#####MenuItemの追加と削除

MenuItemの追加削除は右クリックのメニューから行います。
Gladeのメニューの中に項目がないため、右クリックのメニューのコピーを選択。削除する場合は削除を押す。
Screenshot from 2021-09-29 15-10-38.png

Gtk3アプリ イベントハンドラー自動生成ツール GUI版へ続く

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?