BudgetAnalyser.Engine.Widgets.BudgetBucketMonitorWidget.Update C# (CSharp) 메소드

Update() 공개 메소드

Updates the widget values with updated input.
public Update ( ) : void
리턴 void
        public override void Update([NotNull] params object[] input)
        {
            base.Update(input);
            DetailedText = BucketCode;
            if (!Enabled)
            {
                ToolTip = this.disabledToolTip;
            }
        }
    }