Correct data loading and field reset.
This commit is contained in:
@@ -83,7 +83,104 @@ namespace CICMMetadataEditor
|
|||||||
{
|
{
|
||||||
XamlReader.Load(this);
|
XamlReader.Load(this);
|
||||||
|
|
||||||
LoadData();
|
cmbReleaseType = new EnumDropDown<CICMMetadataTypeReleaseType>();
|
||||||
|
stkReleaseType.Items.Add(new StackLayoutItem {Control = cmbReleaseType, Expand = true});
|
||||||
|
|
||||||
|
treeKeywords.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
||||||
|
HeaderText = "Keyword"
|
||||||
|
});
|
||||||
|
treeBarcodes.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<BarcodeEntry, string>(r => r.code)},
|
||||||
|
HeaderText = "Barcode"
|
||||||
|
});
|
||||||
|
treeBarcodes.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell
|
||||||
|
{
|
||||||
|
Binding = Binding.Property<BarcodeEntry, BarcodeTypeType>(r => r.type).Convert(v => v.ToString())
|
||||||
|
},
|
||||||
|
HeaderText = "Type"
|
||||||
|
});
|
||||||
|
treeCategories.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
||||||
|
HeaderText = "Category"
|
||||||
|
});
|
||||||
|
treeSubcategories.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
||||||
|
HeaderText = "Subcategory"
|
||||||
|
});
|
||||||
|
treeLanguages.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
||||||
|
HeaderText = "Language"
|
||||||
|
});
|
||||||
|
treeOses.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<TargetOsEntry, string>(r => r.name)},
|
||||||
|
HeaderText = "Name"
|
||||||
|
});
|
||||||
|
treeOses.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<TargetOsEntry, string>(r => r.version)},
|
||||||
|
HeaderText = "Version"
|
||||||
|
});
|
||||||
|
treeArchitectures.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
||||||
|
HeaderText = "Architecture"
|
||||||
|
});
|
||||||
|
treeDiscs.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<DiscEntry, string>(r => r.path)},
|
||||||
|
HeaderText = "File"
|
||||||
|
});
|
||||||
|
treeDisks.Columns.Add(new GridColumn
|
||||||
|
{
|
||||||
|
DataCell = new TextBoxCell {Binding = Binding.Property<DiskEntry, string>(r => r.path)},
|
||||||
|
HeaderText = "File"
|
||||||
|
});
|
||||||
|
|
||||||
|
treeKeywords.AllowMultipleSelection = false;
|
||||||
|
treeBarcodes.AllowMultipleSelection = false;
|
||||||
|
treeCategories.AllowMultipleSelection = false;
|
||||||
|
treeSubcategories.AllowMultipleSelection = false;
|
||||||
|
treeLanguages.AllowMultipleSelection = false;
|
||||||
|
treeOses.AllowMultipleSelection = false;
|
||||||
|
treeArchitectures.AllowMultipleSelection = false;
|
||||||
|
treeDiscs.AllowMultipleSelection = false;
|
||||||
|
treeDisks.AllowMultipleSelection = false;
|
||||||
|
|
||||||
|
txtDeveloper.ToolTip = "Who developed the application.";
|
||||||
|
txtPublisher.ToolTip = "Who published the application.";
|
||||||
|
txtAuthor.ToolTip = "Author of the audiovisual media.";
|
||||||
|
txtPerformer.ToolTip = "Performer of the audiovisual media.";
|
||||||
|
txtName.ToolTip = "Application name.";
|
||||||
|
txtVersion.ToolTip = "Application version.";
|
||||||
|
txtPartNumber.ToolTip = "Part number of the application distribution.";
|
||||||
|
txtSerialNumber.ToolTip =
|
||||||
|
"Serial number of the application distribution. Not to be confused with serial number required to install.";
|
||||||
|
|
||||||
|
lstBarcodeTypes = new ObservableCollection<string>();
|
||||||
|
lstLanguageTypes = new ObservableCollection<string>();
|
||||||
|
lstArchitecturesTypes = new ObservableCollection<string>();
|
||||||
|
lstFilesForMedia = new ObservableCollection<string>();
|
||||||
|
|
||||||
|
//cmbBarcodes.ItemTextBinding = Binding.Property<StringEntry, string>(r => r.str);
|
||||||
|
cmbBarcodes.DataStore = lstBarcodeTypes;
|
||||||
|
cmbLanguages.DataStore = lstLanguageTypes;
|
||||||
|
cmbArchitectures.DataStore = lstArchitecturesTypes;
|
||||||
|
cmbFilesForNewDisc.DataStore = lstFilesForMedia;
|
||||||
|
cmbFilesForNewDisk.DataStore = lstFilesForMedia;
|
||||||
|
|
||||||
|
FillBarcodeCombo();
|
||||||
|
FillLanguagesCombo();
|
||||||
|
FillArchitecturesCombo();
|
||||||
|
FillFilesCombos();
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void OnAboutClicked(object sender, EventArgs e)
|
protected void OnAboutClicked(object sender, EventArgs e)
|
||||||
@@ -180,9 +277,6 @@ namespace CICMMetadataEditor
|
|||||||
{
|
{
|
||||||
modified = false;
|
modified = false;
|
||||||
|
|
||||||
cmbReleaseType = new EnumDropDown<CICMMetadataTypeReleaseType>();
|
|
||||||
stkReleaseType.Items.Add(new StackLayoutItem {Control = cmbReleaseType, Expand = true});
|
|
||||||
|
|
||||||
lstKeywords = new ObservableCollection<StringEntry>();
|
lstKeywords = new ObservableCollection<StringEntry>();
|
||||||
lstBarcodes = new ObservableCollection<BarcodeEntry>();
|
lstBarcodes = new ObservableCollection<BarcodeEntry>();
|
||||||
lstCategories = new ObservableCollection<StringEntry>();
|
lstCategories = new ObservableCollection<StringEntry>();
|
||||||
@@ -193,64 +287,6 @@ namespace CICMMetadataEditor
|
|||||||
lstDiscs = new ObservableCollection<DiscEntry>();
|
lstDiscs = new ObservableCollection<DiscEntry>();
|
||||||
lstDisks = new ObservableCollection<DiskEntry>();
|
lstDisks = new ObservableCollection<DiskEntry>();
|
||||||
|
|
||||||
treeKeywords.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
|
||||||
HeaderText = "Keyword"
|
|
||||||
});
|
|
||||||
treeBarcodes.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<BarcodeEntry, string>(r => r.code)},
|
|
||||||
HeaderText = "Barcode"
|
|
||||||
});
|
|
||||||
treeBarcodes.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell
|
|
||||||
{
|
|
||||||
Binding = Binding.Property<BarcodeEntry, BarcodeTypeType>(r => r.type).Convert(v => v.ToString())
|
|
||||||
},
|
|
||||||
HeaderText = "Type"
|
|
||||||
});
|
|
||||||
treeCategories.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
|
||||||
HeaderText = "Category"
|
|
||||||
});
|
|
||||||
treeSubcategories.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
|
||||||
HeaderText = "Subcategory"
|
|
||||||
});
|
|
||||||
treeLanguages.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
|
||||||
HeaderText = "Language"
|
|
||||||
});
|
|
||||||
treeOses.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<TargetOsEntry, string>(r => r.name)},
|
|
||||||
HeaderText = "Name"
|
|
||||||
});
|
|
||||||
treeOses.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<TargetOsEntry, string>(r => r.version)},
|
|
||||||
HeaderText = "Version"
|
|
||||||
});
|
|
||||||
treeArchitectures.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<StringEntry, string>(r => r.str)},
|
|
||||||
HeaderText = "Architecture"
|
|
||||||
});
|
|
||||||
treeDiscs.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<DiscEntry, string>(r => r.path)},
|
|
||||||
HeaderText = "File"
|
|
||||||
});
|
|
||||||
treeDisks.Columns.Add(new GridColumn
|
|
||||||
{
|
|
||||||
DataCell = new TextBoxCell {Binding = Binding.Property<DiskEntry, string>(r => r.path)},
|
|
||||||
HeaderText = "File"
|
|
||||||
});
|
|
||||||
|
|
||||||
treeKeywords.DataStore = lstKeywords;
|
treeKeywords.DataStore = lstKeywords;
|
||||||
treeBarcodes.DataStore = lstBarcodes;
|
treeBarcodes.DataStore = lstBarcodes;
|
||||||
@@ -262,42 +298,23 @@ namespace CICMMetadataEditor
|
|||||||
treeDiscs.DataStore = lstDiscs;
|
treeDiscs.DataStore = lstDiscs;
|
||||||
treeDisks.DataStore = lstDisks;
|
treeDisks.DataStore = lstDisks;
|
||||||
|
|
||||||
treeKeywords.AllowMultipleSelection = false;
|
txtDeveloper.Text = "";
|
||||||
treeBarcodes.AllowMultipleSelection = false;
|
txtPublisher.Text = "";
|
||||||
treeCategories.AllowMultipleSelection = false;
|
txtAuthor.Text = "";
|
||||||
treeSubcategories.AllowMultipleSelection = false;
|
txtPerformer.Text = "";
|
||||||
treeLanguages.AllowMultipleSelection = false;
|
txtName.Text = "";
|
||||||
treeOses.AllowMultipleSelection = false;
|
txtVersion.Text = "";
|
||||||
treeArchitectures.AllowMultipleSelection = false;
|
chkKnownReleaseType.Checked = false;
|
||||||
treeDiscs.AllowMultipleSelection = false;
|
cldReleaseDate.Value = DateTime.UtcNow;
|
||||||
treeDisks.AllowMultipleSelection = false;
|
chkReleaseDate.Checked = false;
|
||||||
|
txtPartNumber.Text = "";
|
||||||
lstBarcodeTypes = new ObservableCollection<string>();
|
txtSerialNumber.Text = "";
|
||||||
lstLanguageTypes = new ObservableCollection<string>();
|
txtNewKeyword.Text = "";
|
||||||
lstArchitecturesTypes = new ObservableCollection<string>();
|
txtNewBarcode.Text = "";
|
||||||
lstFilesForMedia = new ObservableCollection<string>();
|
txtNewCategory.Text = "";
|
||||||
|
txtNewSubcategory.Text = "";
|
||||||
//cmbBarcodes.ItemTextBinding = Binding.Property<StringEntry, string>(r => r.str);
|
txtNewOsName.Text = "";
|
||||||
cmbBarcodes.DataStore = lstBarcodeTypes;
|
txtNewOsVersion.Text = "";
|
||||||
cmbLanguages.DataStore = lstLanguageTypes;
|
|
||||||
cmbArchitectures.DataStore = lstArchitecturesTypes;
|
|
||||||
cmbFilesForNewDisc.DataStore = lstFilesForMedia;
|
|
||||||
cmbFilesForNewDisk.DataStore = lstFilesForMedia;
|
|
||||||
|
|
||||||
FillBarcodeCombo();
|
|
||||||
FillLanguagesCombo();
|
|
||||||
FillArchitecturesCombo();
|
|
||||||
FillFilesCombos();
|
|
||||||
|
|
||||||
txtDeveloper.ToolTip = "Who developed the application.";
|
|
||||||
txtPublisher.ToolTip = "Who published the application.";
|
|
||||||
txtAuthor.ToolTip = "Author of the audiovisual media.";
|
|
||||||
txtPerformer.ToolTip = "Performer of the audiovisual media.";
|
|
||||||
txtName.ToolTip = "Application name.";
|
|
||||||
txtVersion.ToolTip = "Application version.";
|
|
||||||
txtPartNumber.ToolTip = "Part number of the application distribution.";
|
|
||||||
txtSerialNumber.ToolTip =
|
|
||||||
"Serial number of the application distribution. Not to be confused with serial number required to install.";
|
|
||||||
|
|
||||||
FillFields();
|
FillFields();
|
||||||
}
|
}
|
||||||
@@ -330,7 +347,7 @@ namespace CICMMetadataEditor
|
|||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
public void FillFields()
|
void FillFields()
|
||||||
{
|
{
|
||||||
if(metadata == null) return;
|
if(metadata == null) return;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user