示例#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);
 }