ExpressionTextBoxAutomationPeer.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Presentation / System / Activities / Presentation / View / ExpressionTextBoxAutomationPeer.cs / 1305376 / ExpressionTextBoxAutomationPeer.cs

                            using System; 
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Automation.Peers; 
using System.Windows;
using System.Runtime.InteropServices; 
using System.Xml.Linq; 
using System.Globalization;
 
namespace System.Activities.Presentation.View
{
    [System.Runtime.Fx.Tag.XamlVisible(false)]
    class ExpressionTextBoxAutomationPeer : UIElementAutomationPeer 
    {
        public ExpressionTextBoxAutomationPeer(ExpressionTextBox owner) 
            : base(owner) 
        {
        } 

        protected override string GetItemStatusCore()
        {
            ExpressionTextBox textBox = this.Owner as ExpressionTextBox; 
            if (textBox != null)
            { 
                XElement itemStatus = new XElement("ExpressionTextBoxItemStatus", 
                    new XAttribute("Status", textBox.HasErrors ? "Invalid" : "Valid"),
                    new XAttribute("EditingState", textBox.EditingState.ToString(CultureInfo.InvariantCulture)), 
                    new XAttribute("ErrorMessage", String.IsNullOrEmpty(textBox.ErrorMessage) ? String.Empty : textBox.ErrorMessage));
                return itemStatus.ToString();
            }
            return base.GetItemStatusCore(); 
        }
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Automation.Peers; 
using System.Windows;
using System.Runtime.InteropServices; 
using System.Xml.Linq; 
using System.Globalization;
 
namespace System.Activities.Presentation.View
{
    [System.Runtime.Fx.Tag.XamlVisible(false)]
    class ExpressionTextBoxAutomationPeer : UIElementAutomationPeer 
    {
        public ExpressionTextBoxAutomationPeer(ExpressionTextBox owner) 
            : base(owner) 
        {
        } 

        protected override string GetItemStatusCore()
        {
            ExpressionTextBox textBox = this.Owner as ExpressionTextBox; 
            if (textBox != null)
            { 
                XElement itemStatus = new XElement("ExpressionTextBoxItemStatus", 
                    new XAttribute("Status", textBox.HasErrors ? "Invalid" : "Valid"),
                    new XAttribute("EditingState", textBox.EditingState.ToString(CultureInfo.InvariantCulture)), 
                    new XAttribute("ErrorMessage", String.IsNullOrEmpty(textBox.ErrorMessage) ? String.Empty : textBox.ErrorMessage));
                return itemStatus.ToString();
            }
            return base.GetItemStatusCore(); 
        }
    } 
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK