| 123456789101112131415161718192021222324252627282930313233343536373839404142 | using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using System.Windows.Input;using System.Windows.Media;using System.Windows.Media.Imaging;using System.Windows.Navigation;using System.Windows.Shapes;using Aitex.Core.Common.DeviceData;using Aitex.Core.UI.Control;using Caliburn.Micro;using MECF.Framework.Common.OperationCenter;namespace MECF.Framework.UI.Client.Ctrlib.UnitControls{    /// <summary>    /// VGPart.xaml 的交互逻辑    /// </summary>    public partial class VGPartText : UserControl    {        public VGPartText()        {            InitializeComponent();        }        public string PartText        {            get { return (string)GetValue(PartTextProperty); }            set { SetValue(PartTextProperty, value); }        }        // Using a DependencyProperty as the backing store for EdgeColor.  This enables animation, styling, binding, etc...        public static readonly DependencyProperty PartTextProperty =            DependencyProperty.Register("PartText", typeof(string), typeof(VGPartText), new PropertyMetadata(null));    }}
 |