/WordToXaml.VS2013/PreviewSilverlight/Text.cs

# · C# · 136 lines · 75 code · 20 blank · 41 comment · 8 complexity · 72d3ccc7efb551935b5a8b3097f2ada6 MD5 · raw file

  1. // <copyright file="Text.cs" company="Microsoft Corporation">
  2. // Copyright (c) 2008 All Right Reserved
  3. // </copyright>
  4. // <author>Michael S. Scherotter</author>
  5. // <email>mischero@microsoft.com</email>
  6. // <date>2009-01-30</date>
  7. // <summary>Text class for IgnoreWhitespace Custom Attached Property</summary>
  8. namespace Synergist
  9. {
  10. using System;
  11. using System.Windows;
  12. using System.Windows.Controls;
  13. using System.Windows.Documents;
  14. /// <summary>
  15. /// IgnoreWhitespace Custom Attached Property container class
  16. /// </summary>
  17. public sealed class Text
  18. {
  19. #region Fields
  20. /// <summary>
  21. /// IgnoreWhitespace dependency property
  22. /// </summary>
  23. public static readonly DependencyProperty IgnoreWhiteSpaceProperty =
  24. DependencyProperty.RegisterAttached(
  25. "IgnoreWhiteSpace",
  26. typeof(bool),
  27. typeof(Text),
  28. new PropertyMetadata(false, new PropertyChangedCallback(OnPropertyChanged)));
  29. #endregion
  30. #region Constructors
  31. /// <summary>
  32. /// Prevents a default instance of the Text class from being created.
  33. /// </summary>
  34. private Text()
  35. {
  36. }
  37. #endregion
  38. #region Methods
  39. /// <summary>
  40. /// Get the ignore whitespace property value
  41. /// </summary>
  42. /// <param name="source">the dependency object</param>
  43. /// <returns>whether to ignore the whitespace</returns>
  44. public static bool GetIgnoreWhiteSpace(DependencyObject source)
  45. {
  46. return (bool)source.GetValue(IgnoreWhiteSpaceProperty);
  47. }
  48. /// <summary>
  49. /// Set the ignore whitespace property value
  50. /// </summary>
  51. /// <param name="source">a dependency object</param>
  52. /// <param name="value">whether to ignore the whitespace</param>
  53. public static void SetIgnoreWhiteSpace(DependencyObject source, bool value)
  54. {
  55. source.SetValue(IgnoreWhiteSpaceProperty, value);
  56. }
  57. #endregion
  58. #region Implementation
  59. /// <summary>
  60. /// property changed event handler
  61. /// </summary>
  62. /// <param name="element">the dependency object (a TextBlock)</param>
  63. /// <param name="args">the dependency property changed event arguments</param>
  64. /// <remarks>When the property changes on loading the inline collection is not yet full. we must wait until the whole element loads.</remarks>
  65. private static void OnPropertyChanged(DependencyObject element, DependencyPropertyChangedEventArgs args)
  66. {
  67. var textBlock = element as TextBlock;
  68. if (textBlock != null)
  69. {
  70. textBlock.Loaded += new RoutedEventHandler(OnTextBlockLoaded);
  71. UpdateInlines(textBlock.Inlines);
  72. }
  73. }
  74. /// <summary>
  75. /// Update the inlines when the textbox loads
  76. /// </summary>
  77. /// <param name="sender">the textblock</param>
  78. /// <param name="e">the routed event arguments</param>
  79. private static void OnTextBlockLoaded(object sender, RoutedEventArgs e)
  80. {
  81. var textBlock = sender as TextBlock;
  82. bool ignoreWhitespace = (bool)textBlock.GetValue(IgnoreWhiteSpaceProperty);
  83. if (ignoreWhitespace)
  84. {
  85. UpdateInlines(textBlock.Inlines);
  86. }
  87. }
  88. /// <summary>
  89. /// Remove all Run elements with a Text=" "
  90. /// </summary>
  91. /// <param name="inlines">an inline collection</param>
  92. private static void UpdateInlines(InlineCollection inlines)
  93. {
  94. bool removed = false;
  95. do
  96. {
  97. removed = false;
  98. foreach (var inline in inlines)
  99. {
  100. var run = inline as Run;
  101. if (run != null)
  102. {
  103. if (run.Text == " ")
  104. {
  105. inlines.Remove(run);
  106. removed = true;
  107. break;
  108. }
  109. }
  110. }
  111. }
  112. while (removed);
  113. }
  114. #endregion
  115. }
  116. }