public EditVedomostItemWindow(string projectPath, int strNum, int currentSave, int nextSave) { InitializeComponent(); project = new ProjectDB(projectPath); vedomostItem = new VedomostItem(); vedomostItem = project.GetVedomostItem(strNum, currentSave); vedomostItem.id = (new Global()).makeID(strNum, nextSave); nameTextBox.Text = vedomostItem.name; kodTextBox.Text = vedomostItem.kod; documTextBox.Text = vedomostItem.docum; supplierTextBox.Text = vedomostItem.supplier; isNameUnderlinedCheckBox.IsChecked = vedomostItem.isNameUnderlined; }