MonoTouch.Dialog.DialogTextView.HandleChanged C# (CSharp) 메소드

HandleChanged() 개인적인 메소드

private HandleChanged ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 void
		void HandleChanged (object sender, EventArgs e)
		{
			if (string.IsNullOrEmpty(this.PlaceholderText))
				return;
			this.PlaceholderLabel.Text = this.PlaceholderText;
			this.PlaceholderLabel.Font = this.Font;
			this.PlaceholderLabel.Alpha = string.IsNullOrEmpty (this.Text) ? 1 : 0;
			this.SetNeedsLayout();
		}