示例#1
0
        protected virtual void OnInputTextChanged()
        {
            if (inputComboBox != null)
            {
                inputComboBox.Text = inputText;
            }

            InputTextChanged.Invoke(this, EventArgs.Empty);
        }
 protected void OnInputTextChanged()
 {
     InputTextChanged?.Invoke(this, EventArgs.Empty);
 }
示例#3
0
 private void Input_TextChanged(object sender, TextChangedEventArgs e)
 {
     InputTextChanged?.Invoke(this, EventArgs.Empty);
     this.Validate();
 }