Exemple #1
0
		protected virtual void OnCommandChanged( CommandChangedEventArgs e )
		{
			if ( CommandChanged != null )
			{
				CommandChanged( this, e );
			}
		}
Exemple #2
0
 protected virtual void OnCommandChanged(CommandChangedEventArgs e)
 {
     if (CommandChanged != null)
     {
         CommandChanged(this, e);
     }
 }
Exemple #3
0
 private void OnCommandChanged(CommandChangedEventArgs e)
 {
     if (CommandChanged != null)
     {
         CommandChanged(this, e);
     }
 }
Exemple #4
0
        protected void OnCommandChanged(object sender, CommandChangedEventArgs e)
        {
            m_Caption = e.Command.Caption;

            OnCaptionChanged(new EventArgs());

            UpdateToolTip();
        }
Exemple #5
0
		protected void OnCommandChanged( object sender, CommandChangedEventArgs e )
		{
			m_Caption = e.Command.Caption;

			OnCaptionChanged( new EventArgs() );

			UpdateToolTip();
		}