Tagged Questions
The adornerdecorator tag has no wiki summary.
4
votes
1answer
521 views
WPF- Validation -The validation error message goes behind the other controls because of AdornerDecorator
I have implemented IDataErrorInfo in my ViewModel to return a string if the text box has error.
public string this[string columnName]
{
get { return "Error-- This is a long error ...
4
votes
1answer
251 views
Error Adorner in a Scrollviewer
I'm trying to ensure that my error adorners don't get clipped by my scrollviewer's bounds. I have a series of textboxes that are at the edge of a fixed width scrollviewer (no horizontal scrolling, ...
2
votes
1answer
421 views
WPF Moving Adorner outside the AdornerLayer or Window
I have an adorner which is moving along with the mouse cursor. However as soon as the mouse moves outside the window the adorner gets cut off.
Is it possible to expand the adorner layer to the whole ...
2
votes
1answer
2k views
AdornerDecorator and tab stop issues
I am using IDataErrorInfo to validate and indicate errors in my text boxes. I am finding I have to tab once for the text box and once for the adornerdecorator.
I have an error template:
...
1
vote
1answer
476 views
HwndSource does not display the Adorner layer
When I host WPF controls that use adorners (the error border of the textbox) in a HwndSource the adorners are not shown. It seems that the adorner layer is not there. Why is that so and what can I do ...
0
votes
1answer
81 views
how to set the adorner layer to be the topmost
I am using a wpf toolkit datagrid. I am trying to show some details of the cell in an adorner.
To do that i wrap my Datagrid with AdornerDecorator
...
0
votes
1answer
276 views
What's the point to WPF adorners?
I've recently developed a drawing component for my company, featuring a Canvas on which you can draw certain shapes using click-and-drag. For each shape, I placed two adorners on its AdornerLayer: One ...
0
votes
1answer
165 views
Update text in adorner on button click
I have created my custom adorner to cover my main window with a gray canvas alongwith a textblock at center to show some status text while i was working on other window.
What i am currently doing is ...
0
votes
0answers
490 views
AdornerDecorator that lets some adorners pass?
Question: Is it possible to create an AdornerDecorator that takes only the Adorners I want to its AdornerLayer?
public class SimpleCircleBehavior : Behavior<TextBox>
{
private ...