mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
16 lines
389 B
C#
16 lines
389 B
C#
using System.Diagnostics;
|
|
|
|
namespace MicaSetup.Shell.Dialogs;
|
|
|
|
public class CommonFileDialogSeparator : CommonFileDialogControl
|
|
{
|
|
internal override void Attach(IFileDialogCustomize dialog)
|
|
{
|
|
Debug.Assert(dialog != null, "CommonFileDialogSeparator.Attach: dialog parameter can not be null");
|
|
|
|
dialog!.AddSeparator(Id);
|
|
|
|
SyncUnmanagedProperties();
|
|
}
|
|
}
|