C# Как вызвать не статическое событие из статического метода

private void Button_Click(object sender, RoutedEventArgs e)
    {
        globalclik++;
    }

   public class CustomHotKey : HotKey
    {
        public CustomHotKey(string name, Key key, ModifierKeys modifiers, bool enabled)
        : base(key, modifiers, enabled)
        {
            Name = name;
        }

        private string name;
        public string Name
        {
            get { return name; }
            set
            {
                if (value != name)
                {
                    name = value;
                    OnPropertyChanged(name);
                }
            }
        }

        protected override void OnHotKeyPress()
        {

            if (Name == "1")
            {
         Здесь вызвать 
                Button_Click();
           Как это сделать ?     

            }


            base.OnHotKeyPress();
        }



    }

введите сюда описание изображения


Ответы (0 шт):