From c671c7c32dc5604abf2f86145e875fd1f5b5dc35 Mon Sep 17 00:00:00 2001 From: Syrone Wong Date: Wed, 21 Sep 2016 20:00:55 +0800 Subject: [PATCH] Add easter egg Signed-off-by: Syrone Wong --- shadowsocks-csharp/View/MenuViewController.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/shadowsocks-csharp/View/MenuViewController.cs b/shadowsocks-csharp/View/MenuViewController.cs index 4aa270b1..07824258 100644 --- a/shadowsocks-csharp/View/MenuViewController.cs +++ b/shadowsocks-csharp/View/MenuViewController.cs @@ -566,7 +566,11 @@ namespace Shadowsocks.View { if (e.Button == MouseButtons.Left) { - // TODO: show something interesting + // Easter egg + _notifyIcon.BalloonTipTitle = "Keep a low profile"; + _notifyIcon.BalloonTipText = "If you want to keep a secret, you must also hide it from yourself."; + _notifyIcon.BalloonTipIcon = ToolTipIcon.Warning; + _notifyIcon.ShowBalloonTip(5 * 1000); } else if (e.Button == MouseButtons.Middle) {