namespace CopaData.FileInspector.GUI.TilingPanels.Models; /// /// Initial empty frame, can be turned of by setting to false. /// public class EmptyFrame : TilingFrame { public EmptyFrame() { HeaderText = "Empty"; } } /// /// Todo: remove this later, only used to test the non-overriden case of a data template /// public class TestOverrideFrame : TilingFrame { public TestOverrideFrame() { HeaderText = "Testerinho"; } }