Beispiel #1
0
        public ClippyMenuItem(ClippyItem item, int i, string text) : base(text, Gtk.Stock.Cut)
        {
            this.item = item;
            this.i    = i;

            Clicked += delegate {
                this.item.CopyEntry(this.i);
            };
        }
		public ClippyMenuItem (ClippyItem item, int i, string text) : base (text, Gtk.Stock.Cut)
		{
			this.item = item;
			this.i = i;
			
			Clicked += delegate {
				this.item.CopyEntry (this.i);
			};
		}