Tagged Questions
The adorner tag has no wiki summary.
10
votes
1answer
951 views
WPF: Ignore mouse clicks on overlay/adorner, but handle MouseEnter event
What I really want is a version of IsHitTestVisible that ignores mouse click events but still traps mouse enter and leave events.
Background:
An informational overlay pops up under the control with ...
7
votes
2answers
420 views
How can I create a custom image adorner add-in for numerical arrays in Visual Studio 2010?
I work with a lot of floating-point images, and would find it extremely useful to have an image-based representation of my arrays. I'd like to create a WPF UserControl that renders the data array (as ...
7
votes
2answers
2k views
Why does my adorner not re-render when the element it's applied to changes?
In a UI I'm building, I want to adorn a panel whenever one of the controls in the panel has the focus. So I handle the IsKeyboardFocusWithinChanged event, and add an adorner to the element when it ...
7
votes
2answers
4k views
How to display a progress bar on top of a control in WPF
In a WPF UserControl, I have to make to call to a WebService. I am making this call on a separate thread but I want to inform the user that the call may take some time.
The WebMethod returns me a ...
6
votes
1answer
1k views
When should I use adorners?
WPF is great because there are many things to achieve own goals.
By example, for what I understand, adorners can add some controls to a UI element, but I think that the same behavior can be achieved ...
4
votes
1answer
45 views
Possible to clear an adorner layer?
I might be misunderstanding the concept of adorner layers in WPF but I've managed to add a TextBlock to a StackPanel's adorner layer.
How would I clear an adorner layer? So the StackPanel no longer ...
4
votes
3answers
819 views
Drawing diagram arcs with drag and drop in wpf
I'm trying to perform a drag and drop approach to creating relationships in a diagram, directly analagous to SQL Server Management Studio diagramming tools. For example, in the illustration below, ...
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, ...
4
votes
1answer
1k views
Positioning adorner relative to parent's dimensions in WPF
I am trying to position an Adorner depending on the dimensions of the parent of the adorned element. For example, I have a textbox. I want to adorn this textbox so it looks something like this:
A ...
4
votes
2answers
1k views
WPF Adorner Clipping
I have an ItemsControl in a ScrollViewer. The items in the ItemsControl are expanded to a DataTemplate which basically consists of an Adorner.
Now the problem is, when scrolling, the Visual Children ...
4
votes
1answer
2k views
Animation inside an adorner (calling OnRender)
I'm using an Adorner in .NET 3.5, and I'm able to draw by overriding OnRender, but I need the ability to redraw the adorner to change its appearance.
Essentially I'm looking for a way to clear the ...
3
votes
1answer
186 views
How to get Textblock with TextTrimming over an AdornedElementPlaceholder?
I'm trying to get a ValidationRule to display text over an offending combobox, if the user has not specified a value yet. I can get it to display, but I can't seem to get the text to fit to the size ...
3
votes
2answers
109 views
How do I get the size of the visible part of a WPF usercontrol?
I have a usercontrol that consists of a label and a textbox. It's inside a scrollviewer.
I'm drawing an adorner on top of it and I need to adjust the size of the adorner to the visible size of the ...
3
votes
2answers
373 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
1answer
364 views
Should I be using AdornerLayer to avoid clipping my adorner off-screen?
I'm writing some WPF code involving Adorners. I'm using Josh Smith's UIElementAdorner.cs (found in the project on his Infragistics Blog). I'm adorning with a blurb of information text. I need to ...
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 {
...
3
votes
2answers
765 views
No events passed to WPF adorner layer
I am trying to make a nice "drag and drop zone" in WPF that is displayed in the adorner layer when something is being dragged into the main application. The problem is that I do not get any events ...
3
votes
3answers
694 views
Display an Adorner over a WebBrowser control
I'm using the System.Windows.Controls.WebBrowser for various things in my app and I've noticed that adorners are cut off when they are supposed to appear over a WebBrowser. I realize that the ...
3
votes
2answers
2k views
How to update the position of a drag adorner during WPF drag-n-drop?
I'm using an adorner to show a 'ghost' of the element being dragged...
var adornerLayer = AdornerLayer.GetAdornerLayer(topLevelGrid);
dragAdorner = new DragAdorner(topLevelGrid, itemToDrag);
...
3
votes
1answer
689 views
WPF Adorner Transforms
I am building a control, where the user can "draw" resizable rectangles that are laid over the content. To resize those rectangles, I use an Adorner on top of them which contains 4 Thumbs to change ...
2
votes
1answer
401 views
WPF Adorner Overlay Problem
I am trying to achieve functionality similar to that of a Popup, without using a Popup, but instead adorning my ContentControl with a basic adorner. Basically, I want the ContentControl to have an ...
2
votes
1answer
578 views
WPF validation adorners - only show if the control has held focus before
In my WPF application, I want to only show the validation adorner after a control has been edited/entered/focused by the user. This way the user is given a chance to provide valid input into the field ...
2
votes
1answer
593 views
Hiding validation adornment when hiding a control
How, in WPF, do you hide the validation error template adornment (red box by default) when you hide a control? When I hide my controls (to facilitate switching between views) the error adornment ...
2
votes
1answer
419 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
2answers
1k views
When does a WPF adorner layer first become available?
I'm trying to add an overlay effect to my UserControl and I know that's what adorners are used for in WPF. But I'm a bit confused about how they supposedly work. I figured that adorner layer is ...
2
votes
2answers
1k views
WPF: Adorner Hit Testing / MouseDown Event
I have an Adorner which adornes a Border (please see screenshot below). The MouseDown Event for the Adorner is however only raised, when clicking on an element in the adorner. I need the MouseDown ...
2
votes
1answer
584 views
Does Adorner breaks MVVM?
I'm developing a WPF app using MVVM. Most of my views have only xaml markup and nothing (except default boilerplate) on code behind.
All except one view that I use adorners to "blacken" the screen ...
2
votes
4answers
663 views
Adorners for C# Windows Forms
I have a canvas (Panel Control) in my WinForms app where users can drag things like textbox's, labels etc around. But I want to make it easier for them to more precisely align the objects. I've read ...
2
votes
2answers
1k views
Bind to ancestor of adorned element
Here is the case:
<DataTemplate x:Key="ItemTemplate"
DataType="local:RoutedCustomCommand">
<Button Command="{Binding}"
Content="{Binding Text}"
...
2
votes
3answers
144 views
What is the best way to “adorn objects with functionality”?
I made the example below which enables a factory to pack objects with functionality, but the problem is that the functionality is divorced from the object.
My ultimate goal is attach functionality ...
2
votes
1answer
1k views
Saving WPF Adorners
I am relatively new to WPF and I have an issue with Adorners.
I have an inkcanvas that contains an image, I can save the image with the strokes added by the user. The issue I have is that I have a ...
1
vote
2answers
31 views
Accessing AdornerPanel from an AdornerLayout or an Adorner or a adorned Control?
I am trying to add an simple Textblock as adorment to a control. But I want it to be positionned just above my adorned control.
This is the decoration creation ( the problem doesnt rely in this ...
1
vote
0answers
48 views
Cannot access adorners on element that has no adorners
I try to make some drag&drop on WPF using MVVM
I found this link from Bea Stollnitz http://bea.stollnitz which propose a solution
with a DragDropHelper here : ...
1
vote
1answer
33 views
DrawingContext adorner - possible to draw stackpanel?
Using the DrawingContext class I've been able to use the DrawRectangle() method to successfully add an adorner to my adornedElement, but is it possible to construct a stackpanel, with a textbox and ...
1
vote
1answer
77 views
Copying an adorned image to the clipboard
I have a System.Windows.Controls.Image which is decorated with a couple of adorners. Now I want to copy the adorned image to the clipboard. So far I have this line of code:
...
1
vote
1answer
76 views
WPF - adorner stays in original position after view transitions
I have a control template defined, call it myVal, that is used for validation - this is then used for example in a Style targeting textbox where its Validation.ErrorTemplate is set as
Now say there ...
1
vote
1answer
145 views
WPF Validation Control Template overlapping
I've got a user control with a control template to show validation errors, validation template:
<ControlTemplate x:Key="TextBoxPropertyValidationTemplate">
<StackPanel>
...
1
vote
4answers
260 views
Drawing circles in WPF
I am trying to write a WPF application where you can draw circles on a window by double clicking it. So far I have this code:
public class ShapeAdorner : Adorner
{
private readonly Ellipse ...
1
vote
1answer
395 views
WPF - Drag-drop - Adorner disappers outside the control
I'm using WPF to create two ListViews and implement drag-drop functionality. (both intra-listview and inter-listview)
I found an interesting post here which does that.
However, there is a problem. ...
1
vote
1answer
279 views
Animate WPF Drag Adorner movement
in our application we use a adorner for some fake drag & drop. The adorner doesn't follow to mouse but is set to some specific coordinates on the screen when the mouse moves.
double xPosLocation ...
1
vote
1answer
302 views
Validation Error Template Adorner is cut insight a ScrollViewer
i have the following problem. as far a i put my Textboxes in a scrollviewer my ValidationError Adorner get cut by the ScrollViewer. i found some answers to Adorner and ScrollViewer which say i need to ...
1
vote
1answer
376 views
Resizing Adorner on simple Line?
There are a number of Resizing Adorner samples for WPF out there, but I haven't found one that would be good to use with a simple Line... Obviously I'd like the control points to show up on the ends ...
1
vote
2answers
197 views
Rotated Element creates issues with adorner
I have a problem with my adorner which is supposed to preview the destination of my drag & drop operation,
everything is working fine until i rotate the adorned element.
My adorner is a ...
1
vote
2answers
458 views
Highlight or outline any UIElement in adorner layer
I would like to be able to somehow outline or highlight any particular UIElement (or perhaps even Visual) in an adorner layer. Adorner is not a problem per se. I am more concerned about creating an ...
1
vote
1answer
347 views
Can I add an adorner to a DataTemplate item, outside the data template?
Basically, I have a DataTemplate that defines the items in an ItemsControl and I want to pop a speech bubble above the item when it's clicked. So far, my attempts lead to my adorner showing up inside ...
1
vote
4answers
857 views
WPF Control moves but its Adorner - Not :"/
I created an adorner on a WPF line element, because there was neet to add some text.
Now, when this line is moved, the adorner does not "follow" the line automatically. In fact, it does not refresh ...
1
vote
1answer
106 views
Accessing data from an Adorner
I'm writing a 2D graphics tool in C# and WPF, and I'm using Adorners on the Shapes drawn to Canvas.
I'd like the adorners to highlight when a shape is considered "selected", which I'm currently doing ...
1
vote
0answers
369 views
Modifying a property at design-time doesn't update XAML in Expression Blend 4
I've been working on a custom panel for WPF and have run into a problem with some design-time code. To boil the issue down, if I have some code running at design time, and that code modifies a ...
1
vote
1answer
295 views
WPF: Validation.ErrorTemplate not hidden when adorned control (TextBox) hidden
I have a TextBox that gets hidden depending on whether an item is selected in a ComboBox.
This part works fine.
However, it also has ValidatesOnDataErrors set and if the TextBox has an error ...
1
vote
2answers
64 views
Hook into the moment when the Collection is filled and removing then the Loading Adorner?
I am grouping data in a WPF DataGrid. that takes very long so I want to show a Loading bar/adorner.
I am using MVVM. How would you remove/fade out the loading bar/adorner when the datagrid has ...