| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System.Windows;
- using System.Windows.Controls;
- namespace CustomUI
- {
- /// <summary>
- /// 搜索框
- /// </summary>
- public class SearchBox : TextBox
- {
- #region private fields
- #endregion
- #region DependencyProperty
- #endregion
- #region Constructors
- static SearchBox()
- {
- DefaultStyleKeyProperty.OverrideMetadata(typeof(SearchBox), new FrameworkPropertyMetadata(typeof(SearchBox)));
- }
- #endregion
- #region Override
- public override void OnApplyTemplate()
- {
- base.OnApplyTemplate();
- }
- #endregion
- #region private function
- #endregion
- #region Event Implement Function
- #endregion
- }
- }
|