mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-31 10:29:52 +08:00
28 lines
569 B
C#
28 lines
569 B
C#
using System.Windows.Markup;
|
|
|
|
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
[ContentProperty("Items")]
|
|
public abstract class CommonFileDialogProminentControl : CommonFileDialogControl
|
|
{
|
|
private bool isProminent;
|
|
|
|
protected CommonFileDialogProminentControl()
|
|
{
|
|
}
|
|
|
|
protected CommonFileDialogProminentControl(string text) : base(text)
|
|
{
|
|
}
|
|
|
|
protected CommonFileDialogProminentControl(string name, string text) : base(name, text)
|
|
{
|
|
}
|
|
|
|
public bool IsProminent
|
|
{
|
|
get => isProminent;
|
|
set => isProminent = value;
|
|
}
|
|
}
|