예제 #1
0
        private void AddClient_Click(object sender, RoutedEventArgs e)
        {
            AddClient addWindow = new AddClient(ListeClients);

            addWindow.Show();
        }
예제 #2
0
        private void Modifier(Client c)
        {
            AddClient editWindow = new AddClient(ListeClients, c);

            editWindow.Show();
        }