Ejemplo n.º 1
0
 public static Decimal GetTwitterAccountID(TextBoxBase textBoxBase)
 {
     if (textBoxBase == null)
     throw new ArgumentNullException("textBoxBase");
       else
     return (Decimal) textBoxBase.GetValue(URLShortening.TwitterAccountIDProperty);
 }
Ejemplo n.º 2
0
 public static bool GetIsEnabled(TextBoxBase textBoxBase)
 {
     if (textBoxBase == null)
     throw new ArgumentNullException("textBoxBase");
       else
     return (bool) textBoxBase.GetValue(URLShortening.IsEnabledProperty);
 }
 public static string GetText(TextBoxBase element)
 {
     return (string)element.GetValue(TextProperty);
 }
 static bool GetIsVisible(TextBoxBase element)
 {
     return (bool)element.GetValue(IsVisibleProperty);
 }
Ejemplo n.º 5
0
        /// <summary>
        /// Gets if spell checking is enabled within a TextBoxBase.
        /// </summary>
        public static bool GetIsEnabled(TextBoxBase textBoxBase)
        {
            if (textBoxBase == null)
            {
                throw new ArgumentNullException("textBoxBase");
            }

            return (bool)textBoxBase.GetValue(IsEnabledProperty);
        }
Ejemplo n.º 6
0
 /// <summary>
 /// Gets the collection of custom dictionaries used for spell checking of custom words.
 /// </summary>
 /// <param name="textBoxBase"></param>
 /// <returns></returns>
 public static IList GetCustomDictionaries(TextBoxBase textBoxBase)
 {
     if (textBoxBase == null)
     {
         throw new ArgumentNullException("textBoxBase");
     }
     return (IList)textBoxBase.GetValue(CustomDictionariesProperty);
 }
 public static object GetScrollToBottomOnTextChanged(TextBoxBase target)
 {
     return target.GetValue(ScrollToBottomOnTextChangedProperty);
 }
Ejemplo n.º 8
0
		public static Object GetCueBanner( TextBoxBase control )
		{
			return control.GetValue( CueBannerProperty );
		}
Ejemplo n.º 9
0
		static Boolean ShouldShowCueBanner( TextBoxBase c )
		{
			var value = c.GetValue( TextBox.TextProperty ) as String;
			var isVisible = Convert.ToBoolean( c.GetValue( TextBox.IsVisibleProperty ) );

			return isVisible && String.IsNullOrEmpty( value );
		}
Ejemplo n.º 10
0
 public static bool GetSelectAllOnKeyboardFocus(TextBoxBase element)
 {
     return (bool)element.GetValue(SelectAllOnKeyboardFocusProperty);
 }
Ejemplo n.º 11
0
 public static bool GetAutoSelectAll(TextBoxBase tb)
 {
     return (bool)tb.GetValue(AutoSelectAllProperty);
 }
Ejemplo n.º 12
0
 public static bool GetSelectAll(TextBoxBase target)
 {
     return (bool)target.GetValue(SelectAllAttachedProperty);
 }
 public static bool GetSetInterceptsEscKey(TextBoxBase element)
 {
     return (bool)element.GetValue(InterceptsEscKeyProperty);
 }