Xceed.Wpf.Toolkit.CalculatorUpDown.CalculatorPopup_Opened C# (CSharp) Method

CalculatorPopup_Opened() private method

private CalculatorPopup_Opened ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
    void CalculatorPopup_Opened( object sender, EventArgs e )
    {
      if( _calculator != null )
      {
        _calculator.InitializeToValue( this.Value );
        _calculator.Focus();
      }
    }