AcManager.Pages.AcSettings.AcSettingsControls.AcSettingsControls C# (CSharp) Method

AcSettingsControls() public method

public AcSettingsControls ( ) : System
return System
        public AcSettingsControls() {
            AcSettingsHolder.Controls.ConflictResolver = this;

            DataContext = new ViewModel();
            InputBindings.AddRange(new[] {
                new InputBinding(Model.ShareCommand, new KeyGesture(Key.PageUp, ModifierKeys.Control)),
                new InputBinding(Model.SaveCommand, new KeyGesture(Key.S, ModifierKeys.Control))
            });
            InitializeComponent();

            ResizingStuff();
        }