12345678910111213141516171819202122232425262728293031323334353637383940 |
- using OpenSEMI.ClientBase;
- using System;
- using System.Collections.Generic;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Media.Animation;
- using System.Windows.Shapes;
- using CyberX8_Core;
- using CyberX8_Themes.Unity;
- namespace CyberX8_Themes.UserControls
- {
- /// <summary>
- /// PUFChamber.xaml 的交互逻辑
- /// </summary>
- public partial class PUFChamber : UserControl
- {
- public PUFChamber()
- {
- InitializeComponent();
- }
- public static readonly DependencyProperty RotateTransformValueProperty = DependencyProperty.Register(
- "RotateTransformValue", typeof(int), typeof(PUFChamber));
- public int RotateTransformValue
- {
- get { return (int)this.GetValue(RotateTransformValueProperty); }
- set { this.SetValue(RotateTransformValueProperty, value); }
- }
- public static readonly DependencyProperty PufNameProperty = DependencyProperty.Register("PufName", typeof(string), typeof(PUFChamber));
- public string PufName
- {
- get { return this.GetValue(PufNameProperty).ToString(); }
- set { this.SetValue(RotateTransformValueProperty, value); }
- }
- }
- }
|