The arrangeoverride tag has no wiki summary.
3
votes
2answers
324 views
WPF Panel.Children vs Panel.InternalChildren — What's the difference?
According to MSDN - Panel.InternalChildren Property:
Classes that are derived from Panel
should use this property, instead of
the Children
property, for internal overrides such
as ...
2
votes
2answers
124 views
WPF - IScrollInfo implementation
The problem: An Window that has an ItemsControl with some items(let's say Rectangles).
The window has MinWidth and MinHeight setted(eg. 300)
I need that when I resize window if the rectangles has not ...
2
votes
1answer
45 views
FramworkElement Arrange not placing child FramworkElement
I have two classes [applicable to this question]. The first, XYAxes2, extends FrameworkElement. It overrides MeasureOverride and ArrangeOverride in an attempt to place it's sole child, XAxis (also ...
1
vote
0answers
89 views
Why is a ListBoxItem not calling MeasureOverride when its width is changed?
Ok, for illustrative purposes, below I created a subclass of ListBoxItem and a subclass of ListBox which uses it as its container by overriding both IsItemItsOwnContainerOverride and ...
1
vote
1answer
174 views
ArrangeOverride and Arrange() when are they called by the Layouting system?
I am trying to understand the Layouting system in Silverlight, but I don't really know how the process works. I know that Measure is always called before and then when all the measures have been done ...
0
votes
1answer
96 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)
{
...
0
votes
0answers
21 views
Determining if a control's measurement is valid in silverlight
I'm currently working on migrating an application from WPF to Silverlight, and part of the application uses a customized layout algorithm that's implemented in MeasureOverride / ArrangeOverride of the ...
0
votes
0answers
38 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
2answers
74 views
ContentControl Arrange/Measure Child Panels
MyControl : ContentControl
|
ContentProperty
________|__________
...
0
votes
0answers
78 views
UniformGrid: is it possible to rearrange the children?
is it possible to influce the arrage of the elements in a UniformGrid @ RunTime?
Thanks a lot.
0
votes
1answer
65 views
WPF: How do you “undraw” a child item from within a custom panel?
Basically, I have a panel that draws its children based upon a DependencyProperty (FooProperty).
If FooProperty is true, the child is arranged; otherwise, it is not arranged. The first passthrough is ...
0
votes
0answers
259 views
WPF: Arrange and Measure problem
Im having a custom panel with overriding Measure and Arrange. In my view put a TextBox like this:
<l:CustomPanel>
<TextBox />
</l:CustomPanel>
My custom panel is giving the ...
0
votes
2answers
141 views
wpf custom panel
I'm looking at creating a panel that takes all the children and wraps them inside of a ViewBox so it can scale them down to a certain uniform size.
I'm not sure if this is even possible to do, but I ...