123456789101112131415161718192021222324252627282930 |
- 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.Media;
- namespace Venus_Themes.CustomControls
- {
- public class CustomComBobox:ComboBox
- {
- static CustomComBobox()
- {
- DefaultStyleKeyProperty.OverrideMetadata(typeof(CustomComBobox), new FrameworkPropertyMetadata(typeof(CustomComBobox)));
- }
- public CornerRadius CustomCornerRadius
- {
- get { return (CornerRadius)GetValue(CustomCornerRadiusProperty); }
- set { SetValue(CustomCornerRadiusProperty, value); }
- }
-
- public static readonly DependencyProperty CustomCornerRadiusProperty =
- DependencyProperty.Register("CustomCornerRadius", typeof(CornerRadius), typeof(CustomComBobox));
- }
- }
|