예제 #1
0
        private void Button_Click(object sender, RoutedEventArgs e)
        {
            List <string> listaWybranychInformacji = new List <string>();

            foreach (ListBoxItem item in listBox.SelectedItems)
            {
                listaWybranychInformacji.Add(item.Content.ToString());
            }
            ZapiszObrazMatrycy.PDF(J, J.wm, J.R, listaWybranychInformacji);

            this.Close();
        }
예제 #2
0
 private void button_zapisz_all_Click(object sender, RoutedEventArgs e)
 {
     ZapiszObrazMatrycy.Jedna(this);
 }
예제 #3
0
 private void button_zapisz_te_Click(object sender, RoutedEventArgs e)
 {
     ZapiszObrazMatrycy.Wszystkie(this, J.R);
 }