コード例 #1
0
        public static Gtk.Button SmallButton(string stockid)
        {
            Gtk.Button  but = new Gtk.Button();
            Gtk.RcStyle rc  = new Gtk.RcStyle();

            rc.Ythickness = 0;
            rc.Xthickness = 0;

            but.ModifyStyle(rc);

            but.Image  = new Gtk.Image(stockid, Gtk.IconSize.Menu);
            but.Relief = Gtk.ReliefStyle.None;

            return(but);
        }