| 12345678910111213 |
- using System.Windows;
- using System.Windows.Controls;
- namespace SHJX.Service.WorkFlowEdit
- {
- public class SelectionFrame : Control
- {
- static SelectionFrame()
- {
- FrameworkElement.DefaultStyleKeyProperty.OverrideMetadata(typeof(SelectionFrame), new FrameworkPropertyMetadata(typeof(SelectionFrame)));
- }
- }
- }
|