protected void OnSelectedIndexChanged(UIComponent component, int e) { if (this.SelectedIndexChanged != null) { PropChangedEventArgs <int> args = new PropChangedEventArgs <int>("SelectedIndex", e); this.SelectedIndexChanged(this, args); } }
protected void OnScrollPositionChanged(UIComponent component, Vector2 e) { if (this.ScrollPositionChanged != null) { PropChangedEventArgs <Vector2> args = new PropChangedEventArgs <Vector2>("ScrollPosition", e); this.ScrollPositionChanged(this, args); } }
protected void OnTextChanged(UIComponent component, string e) { if (this.TextChanged != null) { PropChangedEventArgs <string> args = new PropChangedEventArgs <string>("Text", e); this.TextChanged(this, args); } }
protected void OnPasswordCharacterChanged(UIComponent component, string e) { if (this.PasswordCharacterChanged != null) { PropChangedEventArgs <string> args = new PropChangedEventArgs <string>("PasswordCharacter", e); this.PasswordCharacterChanged(this, args); } }
protected void OnReadOnlyChanged(UIComponent component, bool e) { if (this.IsReadOnlyChanged != null) { PropChangedEventArgs <bool> args = new PropChangedEventArgs <bool>("IsReadOnly", e); this.IsReadOnlyChanged(this, args); } }
protected void OnSpriteNameChanged(UIComponent component, string e) { if (this.SpriteNameChanged != null) { PropChangedEventArgs <string> args = new PropChangedEventArgs <string>("SpriteName", e); this.SpriteNameChanged(this, args); } }
protected void OnValueChanged(UIComponent component, float e) { if (this.ValueChanged != null) { PropChangedEventArgs <float> args = new PropChangedEventArgs <float>("Value", e); this.ValueChanged(this, args); } }