-
-
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
[WIP] Header, headers, headers #1825
Conversation
Just my 2 cents. The way I handled this in my projects was to create a header control which acts as a container for any input control. In this way, I only had to create a single control and can easily use it for any type of input control. I used a Label internally and handled the target binding internally etc. It is a bit more work to use that than to just add a property value but also avoids having to care about input control specific implementations. |
👍 |
@punker76 @flagbug @thoemmi @jimbobsmith @Amrykid , I know that this is an old item, but I cam across it and had a thought about it - I'm just not sure how well it will be received... What if, instead of having the Thoughts...? |
@amkuchta I don't like the idea to enhance the watermark. I'm more with a new control like the Badged control. A ContentControl which can take any stuff and surround it with a Header text... |
I agree with @punker76. Watermarks and headers are two different paradigms which shouldn't be mixed. |
@punker76 @thoemmi sounds good to me - I still would like to see the external floating watermark in addition to the new |
The Windows 8/WinRT/ModernUI/Whatever XAML framework has the really cool feature of "headers" for some controls
These are two
TextBoxes
, declared in XAML as following;This PR adds this feature via an attached property to some of the controls
TODO
HeaderTemplate
property because people want to customize