Exemplo n.º 1
0
        public WCategoria(Categoria categoria) :
            base(Gtk.WindowType.Toplevel)
        {
            Build();

            entryName.Text = categoria.Name ?? "";

            btExit.Clicked += (sender, e) => Destroy();

            btOk.Clicked += (sender, e) => {
                Categoria c = new Categoria(entryName.Text, categoria.Id);
                CategoryDAO.Save(c);
                Destroy();
            };
        }