AcManager.Pages.AcSettings.AcSettingsPython.Initialize C# (CSharp) Method

Initialize() public method

public Initialize ( ) : void
return void
        public void Initialize() {
            DataContext = new ViewModel();
            InitializeComponent();
            InputBindings.AddRange(new[] {
                new InputBinding(UserPresetsControl.SaveCommand, new KeyGesture(Key.S, ModifierKeys.Control))
            });

            UpdateListBox();
            Model.Python.PropertyChanged += Python_PropertyChanged;
        }