PlatformCulture.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / Themes / Shared / Microsoft / Windows / Themes / PlatformCulture.cs / 1 / PlatformCulture.cs

                            //---------------------------------------------------------------------------- 
// File: CurrentWPFCulture.cs
//
// Description:
// Helper class that allows access to localized values based on the current WPF culture. 
//
// Copyright (C) 2006 by Microsoft Corporation.  All rights reserved. 
// 
//---------------------------------------------------------------------------
using System.Diagnostics; 
using System.Globalization;
using System.Windows;

using System; 

namespace Microsoft.Windows.Themes 
{ 
    /// 
    /// Public class used to expose some properties of the culture 
    /// the platform is localized to.
    /// 
    public static class PlatformCulture
    { 
        /// 
        /// FlowDirection of the culture the platform is localized to. 
        ///  
        public static FlowDirection FlowDirection
        { 
            get
            {
                if (_platformCulture == null)
                { 
                    _platformCulture = MS.Internal.PlatformCulture.Value;
                } 
                Debug.Assert(_platformCulture != null); 

                return _platformCulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.LeftToRight; 
            }
        }

        private static CultureInfo _platformCulture; 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
// File: CurrentWPFCulture.cs
//
// Description:
// Helper class that allows access to localized values based on the current WPF culture. 
//
// Copyright (C) 2006 by Microsoft Corporation.  All rights reserved. 
// 
//---------------------------------------------------------------------------
using System.Diagnostics; 
using System.Globalization;
using System.Windows;

using System; 

namespace Microsoft.Windows.Themes 
{ 
    /// 
    /// Public class used to expose some properties of the culture 
    /// the platform is localized to.
    /// 
    public static class PlatformCulture
    { 
        /// 
        /// FlowDirection of the culture the platform is localized to. 
        ///  
        public static FlowDirection FlowDirection
        { 
            get
            {
                if (_platformCulture == null)
                { 
                    _platformCulture = MS.Internal.PlatformCulture.Value;
                } 
                Debug.Assert(_platformCulture != null); 

                return _platformCulture.TextInfo.IsRightToLeft ? FlowDirection.RightToLeft : FlowDirection.LeftToRight; 
            }
        }

        private static CultureInfo _platformCulture; 
    }
} 

// 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