-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement ButtonsPlacement property to have possibility to set NUD on the left side #2024
Conversation
…ossibility place buttons on the left side with reflection
public static readonly DependencyProperty MinimumProperty = DependencyProperty.Register( | ||
public static readonly DependencyProperty ButtonsPlacementProperty = DependencyProperty.Register( | ||
"ButtonsPlacement", | ||
typeof(Dock), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you create an enumeration for this, instead using Dock
?
something like
enum ButtonsPlacementType
{
Left,
Right
}
i think all other values make no sense
@QuantumDeveloper two notes... |
|
…move close button to the left side.
changes for TextBox ButtonsPlacement usage
Implement ButtonsPlacement property to have possibility to set NUD on the left side
Wouldn't be |
@thoemmi what about |
Maybe |
@thoemmi yeah, i forgot the |
Yes, I'd call both the enum and the dp |
👍 |
No description provided.