aboutsummaryrefslogtreecommitdiff
path: root/bindings/mono/examples
diff options
context:
space:
mode:
authorMarco Trevisan (Treviño) <mail@3v1n0.net>2011-07-18 18:10:58 +0200
committerMarco Trevisan (Treviño) <mail@3v1n0.net>2011-07-18 18:10:58 +0200
commit4574948f9633981df5629a99679683972ab2adae (patch)
tree5dee399d78278c894b619fd5cef990f18ee0a80e /bindings/mono/examples
parent0e4c805aa984369a1aad72e1a6591d013edaf280 (diff)
downloadlibayatana-appindicator-4574948f9633981df5629a99679683972ab2adae.tar.gz
libayatana-appindicator-4574948f9633981df5629a99679683972ab2adae.tar.bz2
libayatana-appindicator-4574948f9633981df5629a99679683972ab2adae.zip
mono bindings: added SecondaryActivate support.
Updated the example too.
Diffstat (limited to 'bindings/mono/examples')
-rw-r--r--bindings/mono/examples/IndicatorExample.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/bindings/mono/examples/IndicatorExample.cs b/bindings/mono/examples/IndicatorExample.cs
index c18a665..397049b 100644
--- a/bindings/mono/examples/IndicatorExample.cs
+++ b/bindings/mono/examples/IndicatorExample.cs
@@ -47,6 +47,10 @@ public class IndicatorExample
indicator.Menu = menu;
indicator.Menu.ShowAll ();
+ indicator.SecondaryActivate += delegate {
+ System.Console.WriteLine ("Got secondary activate event");
+ };
+
win.ShowAll ();
Application.Run ();