Skip to content

Commit

Permalink
Fix WFO1000
Browse files Browse the repository at this point in the history
  • Loading branch information
jas88 committed Feb 4, 2025
1 parent 01098b6 commit 900c073
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Rdmp.Dicom.UI/TagColumnAdderUI.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.ComponentModel;
using System.Windows.Forms;
using Rdmp.Core.Curation.Data;
using Rdmp.Dicom.TagPromotionSchema;
Expand Down Expand Up @@ -37,7 +38,10 @@ private void cbxTag_SelectedIndexChanged(object sender, EventArgs e)
}
}

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public string ColumnName { get; private set; }

[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public string ColumnDataType { get; private set; }

private void btnOk_Click(object sender, EventArgs e)
Expand Down
4 changes: 3 additions & 1 deletion Rdmp.Dicom.UI/TagElevationXmlUI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
using Rdmp.Core.ReusableLibraryCode.Checks;
using ScintillaNET;
using System;
using System.ComponentModel;
using System.Runtime.Versioning;
using System.Windows.Forms;
using Rdmp.UI.ScintillaHelper;
Expand Down Expand Up @@ -71,7 +72,8 @@ private void RunChecks()
}
}

public ICatalogueRepository CatalogueRepository { get;set; }
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public ICatalogueRepository CatalogueRepository { get; set; }

public ICustomUIDrivenClass GetFinalStateOfUnderlyingObject()
{
Expand Down

0 comments on commit 900c073

Please sign in to comment.