Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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, ...
3
votes
2answers
376 views

Wpf Adorner not responding to interactions

I'm trying to create an overlay in wpf (with darkening background), similar to the ones you can find on the web to popup images. I would like it to be reusable in more than 1 part of the application, ...
3
votes
2answers
1k views

GetAdornerLayer mysteriously returning null

I've been using the same bit of code for several versions of my app with no problems, but I'm now mysteriously receiving NullRerefenceExceptions with the following: this.Loaded += delegate { ...
2
votes
1answer
516 views

In WPF, how to display AdornerLayer on top of DataGrid

I am using WPF datagrid from codeplex. I am using DatagridTemplateColumn and I have written datatemplates to display contents in each column. Now I have to display some help message to a user when ...
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 ...
1
vote
1answer
61 views

Why is FrameworkElement.VisualChildrenCount protected?

Here's the background for my question: I would like to know if a particular System.Windows.Documents.AdornerLayer is empty or not. "OK, I'll make the check myAdornerLayer.VisualChildrenCount > 0." ...
1
vote
1answer
733 views

Validation ErrorTemplate not showing on data errors

This is a bit of a WPF whodunnit! My validation temples it not appearing when expected The Problem Basically, I am using IDataErrorInfo on my view model to provide feedback on data entry errors. ...
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 ...
1
vote
1answer
282 views

Does GetAdornerLayer return the same layer for a control and its adorner?

If I call GetAdornerLayer(control) in a control and then add an adorner to the layer, will calling GetAdornerLayer(adorner) return the same layer? I ask because we have code that adds an adorner in a ...
1
vote
1answer
545 views

Initial validation on dynamically added control

WPF validation system performs intial validatation of an object (I mean - all fields are validated when a databound item is changed, and results are displayed on the ui). But it doesn't work like ...
0
votes
0answers
31 views

AdornerLayer ignores adorner's HorizontalAlignment and VerticalAlignment values

Is it expected behaviour that the AdornerLayer ignores an adorner's HorizontalAlignment and VerticalAlignment values? I have an adorner that has a single child, and I tried this in its constructor: ...
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
2answers
144 views

Printing Adorner Layers in a RichTextBox

I have a richTextBox Editor that contains image adorner layers on top of each word. I want to print the document in a good format and print the adorner picture layers too. Is there a way I can ...
0
votes
0answers
92 views

How to get top adorner layer

My problem is similar to In WPF, how to display AdornerLayer on top of DataGrid I use adorner Layer for showing advanced editor for some cells in Xceed grid and for extreme cells it is clipped. Old ...
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
95 views

Adorners overlap controls that are above the adorned element

Hey, I'm having an issue with adorners. I created resize adorners which have four Thumb controls, one for each of the corners of the control being decorated. The control is being drawn on a Canvas, ...
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
161 views

Drag Adorner render slow

I have an adorner cursor, implemented using Ben's method, and also a WindowChrome, using MSDN Chrome library. The problem now I had is when I drag the control that I want to move, it caused my ...
0
votes
2answers
880 views

How to make WPF Adorner visible

i'm struggling a bit about when or how to activate / make visible a MoveAdorner. I try the following but have no success: In the element that is to be adorned i add the Adorner in the GotFocus ...
0
votes
1answer
380 views

No, an Adorner DOES NOT automagically take the DataContext of its AdornedElement in WPF

Original question: Does an Adorner automagically inherit the "DataContext" of its "AdornedElement" in WPF?