/Release/Silverlight4/SampleSource/Controls.Samples/TreeMap/TreeMapSample.xaml.cs

# · C# · 24 lines · 12 code · 2 blank · 10 comment · 0 complexity · cfea8179e1e7c1a52e8b031dbc0c9fc2 MD5 · raw file

  1. // (c) Copyright Microsoft Corporation.
  2. // This source is subject to the Microsoft Public License (Ms-PL).
  3. // Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
  4. // All other rights reserved.
  5. using System.ComponentModel;
  6. namespace System.Windows.Controls.Samples
  7. {
  8. /// <summary>
  9. /// Example showing how the TreeMap can be templated and populated with data.
  10. /// </summary>
  11. [Sample("(0)TreeMap", DifficultyLevel.Basic, "TreeMap")]
  12. public partial class TreeMapSample : UserControl
  13. {
  14. /// <summary>
  15. /// Initializes a new instance of the MinimalSample class.
  16. /// </summary>
  17. public TreeMapSample()
  18. {
  19. InitializeComponent();
  20. }
  21. }
  22. }