Abstract class that represents a FrameworkElement that decorates a UIElement.
0
votes
0answers
28 views
GetRectFromCharacterIndex returning infinity values instead of actual rect values
I'm trying to get a rect representing the location of some text inside of a textBox in WPF.
The problem I am having is that the values being return for the rect are returning as "Infinity".
rect.X ...
1
vote
1answer
32 views
How can I remove an adorner by clicking it?
My adorner is drawn in code using the drawingContext in OnRender. I want the user to be able to click the adorner, or a button on it, to close it. What would I do in the adorner's ...
0
votes
0answers
33 views
Rendering of adorner lags behind
I'm observing some weird behavior where it seems as if the adorner layer is rendered a few frames later than the rest of my controls.
In the image above, when I initiate a click and drag operation ...
0
votes
0answers
65 views
Can somebody please explain GetAdornerLayer?
I am getting really confused about how this method works. It keeps returning null for me when I think it shouldn't.
I'm adding controls to my tree dynamically, so I have all this stuff in code, not ...
1
vote
1answer
121 views
WPF adorners vs custom adorners?
Customer wants create diagram editor. Inside editor i will have huge amount of items and those items is movable and resizable.
And i want to ask advice from people who already worked with WPF ...
0
votes
0answers
120 views
WPF Adorners ZIndex - On top of all elements
Accordingly to the msdn : "Anything placed in the adorner layer is rendered on top of the rest of any styles you have set. In other words, adorners are always visually on top and cannot be overridden ...
0
votes
1answer
113 views
Determining if a ListViewItem is fully or only partially visible in the WPF ListView
I have a WPF ListView. This ListView will contain n-items.
As a user drags something into the listview, I am displaying a horizontal bar on the AdornerLayer of the ListView to show the index where ...
1
vote
1answer
71 views
Efficiently display multiple markers on WPF image
I need to display many markers on a WPF image. The markers can be lines, circles, squares, etc. and there can be several hundreds of them.
Both the image source and the markers data are updated every ...
0
votes
1answer
41 views
Getting the coordinates of a specific ListViewItem relative to it's owning ListView
I'm trying to determine the physical coordinates (specifically I'm interested in the TOP and BOTTOM) of the container which represents the ListViewItem.
I have a reference to the ListViewItem via:
...
5
votes
3answers
514 views
WPF Drag and Drop Source Code
Almost all the questions on stackoverflow dealing with drag and drop in WPF refer back to this article. However, the source code for the article is missing. Does anyone have a copy or know where to ...
1
vote
0answers
51 views
text in adorner dissappears when background not transparent
I have some gridrows with some data on it. if the text is too large, an adorner will show up with the text in it and will act as a ToolTip (long story why i don't use a tooltip anymore, but most of ...
1
vote
0answers
102 views
WPF Adorner appear on mouseover animation - what's the best pattern?
An Adorner is defined over part of an Image. The required behavior is as follows:
When the mouse is over the image area, including the Adorner area, the Adorner appears.
When the mouse leaves the ...
1
vote
2answers
514 views
How to draw WPF Adorners on top of everything else?
I've added an Adorner to my DateTimePicker control but it's not shown on top of the other controls. Why? How do I fix it?
My XAML currently goes like this:
<UserControl ...
1
vote
2answers
217 views
Why AdornerLayers are always the top most layers? Is there a way to change it?
Why is that the adorner layer is always rendered as the top most layer in an application (under AdornerDecorator - refer screenshot)?
Is there a way to change the layer/level on to which the ...
0
votes
0answers
147 views
Clipping AdornerLayer
I have a PanZoomImage class defined like this:
<Border Grid.Row="0" Name="border" ClipToBounds="True">
<Canvas Name="canvas">
<Image Name="image" ...
0
votes
1answer
212 views
WPF get visual from mouse position
I have a canvas where a draw some GraphNodes and add them to the canvas as ContentControls. All graph nodes have an adorner which I use to draw connection lines from a node to another node. The ...
0
votes
0answers
201 views
MouseOver Adorner with some delay
I have columnHeader and when i do mouse over I display one adorner by calling ShowAdorner command. Here I want to set 0.7 sec delay before adorner pops up. How to set delay before it calls ...
1
vote
1answer
83 views
Get contentpresenter location (size and offset from owner)
I need a way to dynamically retrieve (not knowing what type of frameworkElement), the content/items presenter size and offset from the owner's edges in any form.
I need to create an adorner that ...
0
votes
1answer
157 views
Issue - Dragging a group of objects after applying RotateTransform with Adorners in a Canvas - Control suddenly jump to extreme value
I'm having a problem using Adorners to roate and drag objects within a Canvas.
Below are the steps I am following-
The Canvas is placed inside a ScrollViewer.
I drop an object on Canvas
Drag it ...
1
vote
1answer
508 views
How to arrange Thumbs with a Line in a WPF custom Adorner
I'm working on a Adorner for a Line in a drawing program using WPF. The Line is drawn in code-behind and then adorned with my custom Adorner called LineAdorner. I've managed to use a Thumb for the ...
-1
votes
1answer
1k views
How to bind visibility property in wpf
The xaml code is as follows:
<Helper:BooleanVisibilityValueConverter x:Key="BoolToVisible" />
<Control x:Name="ResizeDecorator" MouseMove="ResizeDecorator_MouseMove" Template=" ...
3
votes
1answer
342 views
How to make sure validation in adorner layer is shown behind other controls
I have a WPF application that has user validation. This is rendered in the adorner layer, that appears above all other layers, according to documentation.
In the screenshot you can see that this ...
1
vote
1answer
186 views
Include Adorner in ScrollViewer scrollable region
I currently have an Adorner inside a ScrollViewer. Objects at the bottom of the scrollviewer can sometimes display a large adorner below them. Unfortunately, that adorner is not included in the ...
1
vote
1answer
420 views
What is different between Adorner and Popup?
I am being confused with several different approaches to do the same thing, my actual problem is that I could not have some heuristics to decide to use which approach in which scenario. I am talking ...
0
votes
0answers
254 views
Adorner not showing up
I am using an UserControl that contains the Canvas. As child of the canvas there is content control with adorner. Why the adorner is not visible perhaps the adorner layer is ceated.
Everything is ...
1
vote
2answers
578 views
Why is my SurfaceScrollViewer not drag-scrolling?
We're writing an application for Windows tablet PCs. I have created a custom control that uses a SurfaceScrollViewer to render a vertical and scrollable list to the right of the window. The control ...
3
votes
1answer
437 views
How to create adorners that don't scale with AdornedElement?
Quite simply, I want to create some resize/rescale adorners to attach to a FrameworkElement that will allow the user to resize the element if they use the adorners normally and will allow them to ...
3
votes
2answers
441 views
BUG in WPF? TextBlock inside Adorner display inverse text when FlowDirection is RightToLeft
I'm using adorner to display a watermark inside my textbox. but when i set FlowDirection of window to RightToLeft, text inside adorner (which is textblock) is inverse!!!
Is that a bug or i should ...
1
vote
1answer
394 views
Validation error adornment not clearing when HasError is false
INTRODUCTION
I have created a DecimalTextBox user control which has ValidationRules attached to it to prevent nulls, have a minimum and maximum range and it has event handlers to prevent non-decimal ...
1
vote
1answer
350 views
Using more than 144 adorners
It appears that the maximum number of adorners that work without any breakage is 144.
I have a ScrollView with a bunch of objects, and many of them come with adorners. The first 144 adorners are ...
0
votes
1answer
200 views
Can you have an adorner that extends outside of the bounds of the adorned control?
We have a control that displays a small visual but we need to display a large error message. We have the validation template showing up, but it seems to be clipped to the bounds of the adorned ...
2
votes
2answers
268 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 ...
4
votes
1answer
677 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 ...
0
votes
1answer
179 views
Exchange parameters between adorner and adorned control
I need to pass some parameters between adorner and adorned control.
How this can be done? Should I remove and add new adorner with new parameters every time parameters change?
For example, one of my ...
0
votes
1answer
582 views
MeasureOverride and ArrangeOverride are not called
I'm using ZoomControl from WPFExtensions. Source code is here.
I've added adorner with OnRender method:
protected override void OnRender(DrawingContext drawingContext)
{
...
2
votes
1answer
308 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 : ...
2
votes
1answer
548 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
2answers
353 views
Drag drop error : Cannot access adorners on element that has no adorners
I am implementing the Drag drop solution mentioned here :
http://bea.stollnitz.com/blog/?p=53
I have few ListBoxes + with WrapPanel and Items. i should be able to drag and drop item from any of the ...
0
votes
2answers
179 views
Add adorner to bound children?
<ItemsControl Name="CanvasTableMap" ItemsSource="{Binding}" ItemsPanel="{DynamicResource ItemsPanelTemplate1}" ItemTemplate="{DynamicResource DataTemplate1}">
<ItemsControl.Resources>
...
0
votes
1answer
197 views
Rubberband Effect on Image using ASP.Net
I am trying to watermark an Image and works perfect and now I need to have my customers much more convinient so that I am planning to add a feasibility to the image watermarker.So I need some help!
I ...
0
votes
2answers
1k views
C# WPF - Adorner ZIndex
I have a Grid with a Adorner to provide some drawn pattern. See img: http://imgur.com/D649W
My problem is that this Adorner(dots on the Grid) is layered on top of everything. The white square are ...
0
votes
2answers
526 views
How to make usercontrol on topmost in wpf?
I have a grid which contains three rows.
First row contains which show toolbar.
Second row contains which shows status bar.
Third row contains the Listbox which is data bound to observable collection.
...
0
votes
1answer
698 views
Control an Adorner's visibility using a Property?
Would it be possible for an Adorner to be hidden / displayed depending on the value of a property in a class ?
Should I use attached properties for this purpose ?
If so, how exactly can the ...
0
votes
1answer
478 views
WPF: How to use adorners for validation purposes?
Context:
I'm creating a Login interface using WPF 4 which consists of two Labels, one TextBox (for the username) and one PasswordBox. Both elements use the same style / template.
The username is ...
0
votes
1answer
216 views
wpf datagrid FrozenColumnCount and usercontrol with adorner
i have a DataGrid with FrozenColumnCount set to one and some DataTemplateColumns which contains a control which uses an adorner (simply lets say a TextBox with an Adorner which shows the Text "Unit" ...
0
votes
1answer
352 views
Problems with using Controls.Popup as error adorner in WPF
My (simplified) validation template is
<Grid>
<Border x:Name="ErrorAdorner"
BorderBrush="Red">
<AdornedElementPalceHolder />
</Border>
<Popup ...
3
votes
1answer
499 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 ...
0
votes
1answer
430 views
ToolTip on Adorner doesn't show up
I have an adorner defined as follows:
private class ErrorAdorner : Adorner
{
private readonly Border _errorBorder;
public ErrorAdorner(UIElement adornedElement)
: ...
0
votes
2answers
442 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 ...
1
vote
1answer
215 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:
...