using _20230724_MBJC_upperpc.Models; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; 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; namespace _20230724_MBJC_upperpc.Views { /// /// FirstPageSupportControl.xaml 的交互逻辑 /// public partial class FirstPageSupportControl : UserControl { //字体颜色 public Brush Text_Color { get { return (Brush)GetValue(Text_ColorProperty); } set { SetValue(Text_ColorProperty, value); } } // Using a DependencyProperty as the backing store for _color. This enables animation, styling, binding, etc... public static readonly DependencyProperty Text_ColorProperty = DependencyProperty.Register("Text_Color", typeof(Brush), typeof(FirstPageSupportControl), new PropertyMetadata(default(Brush), new PropertyChangedCallback(OnPropertyChanged))); //字体大小 public int Font_Size { get { return (int)GetValue(Font_SizeProperty); } set { SetValue(Font_SizeProperty, value); } } public static readonly DependencyProperty Font_SizeProperty = DependencyProperty.Register("Font_Size", typeof(int), typeof(FirstPageSupportControl), new PropertyMetadata(default(int), new PropertyChangedCallback(OnPropertyChanged))); /// /// 告警信息 /// public string AlarmInfo { get { return (string)this.GetValue(AlarmInfoProperty); } set { this.SetValue(AlarmInfoProperty, value); } } public static readonly DependencyProperty AlarmInfoProperty = DependencyProperty.Register("AlarmInfo", typeof(string), typeof(FirstPageSupportControl), new PropertyMetadata(default(string), new PropertyChangedCallback(OnPropertyChanged))); /// /// Beacon /// public BeaconModel Beacon { get { return (BeaconModel)this.GetValue(BeaconProperty); } set { this.SetValue(BeaconProperty, value); } } public static readonly DependencyProperty BeaconProperty = DependencyProperty.Register("Beacon", typeof(BeaconModel), typeof(FirstPageSupportControl), new PropertyMetadata(default(BeaconModel), new PropertyChangedCallback(OnPropertyChanged))); /// /// 是否可以使用鼠标跟随 /// public bool TBDEnable { get { return (bool)this.GetValue(TBDEnableProperty); } set { this.SetValue(TBDEnableProperty, value); } } public static readonly DependencyProperty TBDEnableProperty = DependencyProperty.Register("TBDEnable", typeof(bool), typeof(FirstPageSupportControl), new PropertyMetadata(default(bool), new PropertyChangedCallback(OnPropertyChanged))); /// /// 模型位置 /// public int Model_Position { get { return (int)GetValue(Model_PositionProperty); } set { SetValue(Model_PositionProperty, value); } } public static readonly DependencyProperty Model_PositionProperty = DependencyProperty.Register("Model_Position", typeof(int), typeof(FirstPageAnchorControl), new PropertyMetadata(default(int), new PropertyChangedCallback(OnPropertyChanged))); public static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { (d as FirstPageSupportControl).Refresh(); } public FirstPageSupportControl() { InitializeComponent(); } private void Refresh() { //将其余值进行赋值 if (Beacon != null) { this.SupportModel.Rotate_X = Beacon.Beacon_Pitch_Angle; this.SupportModel.Rotate_Y = Beacon.Beacon_Heading_Angle; this.SupportModel.Rotate_Z = Beacon.Beacon_Roll_Angle; this.DateTime.Text = Beacon.Datetime.ToString("yyyy-MM-dd HH:mm:ss"); this.TextID.Text = Beacon.ID + ""; this.TextJD.Text = Beacon.Beacon_JD + "°"; this.TextWD.Text = Beacon.Beacon_WD + "°"; this.TextSD.Text = Beacon.Beacon_Depth + "米"; this.TextHGJ.Text = Beacon.Beacon_Roll_Angle + "°"; this.TextFYJ.Text = Beacon.Beacon_Pitch_Angle + "°"; this.TextPHJ.Text = Beacon.Beacon_Heading_Angle + "°"; this.DWJL.Text = Beacon.Position_Distance + "米"; this.Temp.Text = Beacon.Temp + "℃"; } //设置告警信息 //this.TextAlarm.Text = AlarmInfo; //是否可以使用鼠标跟随 //this.AnchorModel.TBDEnable = TBDEnable; //设置字体颜色和字体大小 this.TextID.Foreground = this.Text_Color; if (this.Font_Size != 0) this.TextID.FontSize = this.Font_Size; } } }