68 lines
2.3 KiB
C#
68 lines
2.3 KiB
C#
|
|
using MonitoringTechnology.DataAccess;
|
|||
|
|
using MonitoringTechnology.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 MonitoringTechnology.Views
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// BlackBox.xaml 的交互逻辑
|
|||
|
|
/// </summary>
|
|||
|
|
public partial class BlackBox : UserControl
|
|||
|
|
{
|
|||
|
|
//包装器
|
|||
|
|
public float Rotate_X
|
|||
|
|
{
|
|||
|
|
get { return (float)this.GetValue(Rotate_XProperty); }
|
|||
|
|
set { this.SetValue(Rotate_XProperty, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static readonly DependencyProperty Rotate_XProperty = DependencyProperty.Register("Rotate_X", typeof(float), typeof(BlackBox), new PropertyMetadata(default(float), new PropertyChangedCallback(OnPropertyChanged)));
|
|||
|
|
|
|||
|
|
public float Rotate_Y
|
|||
|
|
{
|
|||
|
|
get { return (float)this.GetValue(Rotate_YProperty); }
|
|||
|
|
set { this.SetValue(Rotate_YProperty, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static readonly DependencyProperty Rotate_YProperty = DependencyProperty.Register("Rotate_Y", typeof(float), typeof(BlackBox), new PropertyMetadata(default(float), new PropertyChangedCallback(OnPropertyChanged)));
|
|||
|
|
|
|||
|
|
public float Rotate_Z
|
|||
|
|
{
|
|||
|
|
get { return (float)this.GetValue(Rotate_ZProperty); }
|
|||
|
|
set { this.SetValue(Rotate_ZProperty, value); }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public static readonly DependencyProperty Rotate_ZProperty = DependencyProperty.Register("Rotate_Z", typeof(float), typeof(BlackBox), new PropertyMetadata(default(float), new PropertyChangedCallback(OnPropertyChanged)));
|
|||
|
|
|
|||
|
|
public static void OnPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
|
|||
|
|
{
|
|||
|
|
(d as BlackBox).Refresh();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void Refresh()
|
|||
|
|
{
|
|||
|
|
this.rotateX.Angle = Rotate_X;
|
|||
|
|
this.rotateY.Angle = Rotate_Y;
|
|||
|
|
this.rotateZ.Angle = Rotate_Z;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public BlackBox()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|