ConfiguratorContainer.cs
上传用户:huazai0421
上传日期:2008-05-30
资源大小:405k
文件大小:1k
源码类别:

SilverLight

开发平台:

C#

  1. using System;
  2. using System.Windows;
  3. using System.Windows.Controls;
  4. namespace ESRI.ArcGIS.Samples
  5. {
  6. public class ConfiguratorContainer : ContentControl
  7. {
  8. public ConfiguratorContainer()
  9. {
  10. DefaultStyleKey = typeof(ConfiguratorContainer);
  11. }
  12. public ESRI.ArcGIS.Client.Layer Layer { get; set; }
  13. /// <summary>
  14. /// Identifies the <see cref="Title"/> dependency property.
  15. /// </summary>
  16. public static readonly DependencyProperty TitleProperty =
  17. DependencyProperty.Register("Title", typeof(String), typeof(ConfiguratorContainer), null);
  18. /// <summary>
  19. /// Gets or sets Title.
  20. /// </summary>
  21. public String Title
  22. {
  23. get { return (String)GetValue(TitleProperty); }
  24. set { SetValue(TitleProperty, value); }
  25. }
  26. }
  27. }