SelectionFrame.cs 320 B

12345678910111213
  1. using System.Windows;
  2. using System.Windows.Controls;
  3. namespace SHJX.Service.WorkFlowEdit
  4. {
  5. public class SelectionFrame : Control
  6. {
  7. static SelectionFrame()
  8. {
  9. FrameworkElement.DefaultStyleKeyProperty.OverrideMetadata(typeof(SelectionFrame), new FrameworkPropertyMetadata(typeof(SelectionFrame)));
  10. }
  11. }
  12. }