示例#1
0
        public edit(int id, gestionFilm w)
        {
            InitializeComponent();

            this.id = id;
            this.w  = w;
            showFilm();
        }
示例#2
0
        public add(gestionFilm w)
        {
            InitializeComponent();

            film   = new film();
            this.w = w;
            start();
        }
示例#3
0
        private void editfFilm(object sender, RoutedEventArgs e)
        {
            gestionFilm g = new gestionFilm();

            g.Show();
        }