qamp/Qrakhen.TilingFrames/Models/EmptyFrame.cs

18 lines
525 B
C#

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