Files
better-genshin-impact/Build/MicaSetup/Natives/Shell/Dialogs/Common/IDialogControlHost.cs

13 lines
318 B
C#

namespace MicaSetup.Shell.Dialogs;
public interface IDialogControlHost
{
void ApplyCollectionChanged();
void ApplyControlPropertyChange(string propertyName, DialogControl control);
bool IsCollectionChangeAllowed();
bool IsControlPropertyChangeAllowed(string propertyName, DialogControl control);
}