mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-03-30 10:19:51 +08:00
13 lines
318 B
C#
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);
|
|
}
|