Tagged Questions
The measureoverride tag has no wiki summary.
4
votes
1answer
597 views
WPF UserControl is not drawn when overriding MeasureOverride and ArrangeOverride
I have a UserControl looking like this:
<UserControl
MaxHeight="32"
MaxWidth="32"
MinHeight="25"
MinWidth="25">
<DockPanel>
<!-- some stuff -->
...
3
votes
1answer
50 views
How can I change only a single option of a DependencyProperty's metadata in a subclass?
We need to override a DependencyProperty's metadata for our subclass. Now I know that I can use OverrideMetadata and specify entirely new FrameworkProperrtyMetadata object, but for the most part I ...
3
votes
1answer
279 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
92 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
38 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 ...
2
votes
1answer
182 views
Subclassing FrameworkElement in Silverlight 4.0 - A Measure Pass Question
I currently have an issue in Silverlight where I want to detect the change in size for an element, and react to it. However, listening with .SizeChanged is actually not sufficient, as often I get a ...
1
vote
0answers
73 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
2answers
59 views
WPF - How to get my Panel to see if a DependencyProperty is set on my child when they are UIElements?
Basically, during my MeasureOverride I want to check to see if my child element has a certain property set on it regardless of what type of item it is.
public override Size MeasureOverride(Size ...
1
vote
1answer
151 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 ...
1
vote
1answer
229 views
WPF layout calls MeasureOverride repeatedly in increments of 2?
I've run into a case where I have a custom Panel (inherits from Panel) and I'm using it as an ItemsPanel in a ListView.
When I resize the container that it's in, if I resize it smaller, my panel's ...
1
vote
3answers
582 views
How to set DesiredSize.Width of a UIElement?
I need to calculate the Width of each UIElement in a custom panel. If looping over Children:
foreach (UIElement child in Children) { ... }
I can't do child.DesiredSize.Width = myCalculatedWidth; ...
0
votes
1answer
59 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
15 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
30 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
272 views
WPF MeasureOverride called multiple times after multiple PropertyChanged notifications
In my application, I have a graph (Custom Wpf Panel) with Wpf controls as elements. The elements are custom controls derived from Wpf Control. DataTemplates associate the controls to their view ...
0
votes
0answers
250 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
239 views
How do you use MeasureOverride in Silverlight?
I think I have understood how MeasureOverrride works, but I am trying to use it in a very simple case and It doesn't work... So now I'm not so sure... After using Measureoverride do I have to use ...
0
votes
2answers
198 views
Customized Measure / Arrange algorithms on controls that use Data Binding in WPF
I'm writing an arrange / measure algorithm for a custom editor. The editor uses custom UserControl-derived classes as controls on the canvas. These controls are data bound to various properties / ...
0
votes
4answers
238 views
WPF C# Custom Control — How to get children to follow a strict size (stretch out)
I'm not sure how to go about this, but I created a custom Panel FooPanel. I want my FooPanel to force all the children to fit within a size that is predetermined by the panel (that way they are ...
0
votes
1answer
342 views
WPF InvalidateMeasure not called during or after animation
I have a custom ListBox whith the following ListBoxItem style. It contains a few animations to scale the ListBoxItem when the mouse hovers over it.
<Style x:Key="notesListBoxStyle" ...
0
votes
2answers
980 views
ElementFlow: Exception in MeasureOverride
I'm trying to use FluidKits ElementFlow-control in my application, but get an exception in the MeasureOverride method of ElementFlow.
Layout measurement override of element ...
-2
votes
1answer
35 views
Layout System in WPF
I want to trigger the Measure/Arrange layout pass of an ItemsControl manually in code behind without user interaction. Is it possible? If yes, How? I tried InvalidateMeasure(), UpdateLayout(), but no ...