Skip to main content

StackPanel inverse pour Silverlight

J’ai besoin d’un StackPanel qui agence les éléments du bas vers le haut, mais je n’en ai trouvé aucun qui le fasse. Il ne suffit pas de mettre VerticalAlignment="Bottom" sur les éléments d’un StackPanel comme on le voit souvent recommandé, car le Z-order n’est pas correct (ça se remarque si vos éléments “grignottent” les uns sur les autres, par exemple si vous les empilez en 3D).

Voici le code que j’ai écrit, que vous êtes libres d’utiliser dans vos applications (license MS-PL):

public class ReverseStackPanel : Panel
{
    protected override Size MeasureOverride(Size availableSize)
    {
        foreach (FrameworkElement child in Children)
        {
            child.Measure(availableSize);

        }

        return availableSize;
    }

    protected override Size ArrangeOverride(Size finalSize)
    {
        double bottom = finalSize.Height;
        foreach (var child in Children)
        {
            child.Arrange(new Rect(0, bottom-child.DesiredSize.Height, finalSize.Width, child.DesiredSize.Height));
            bottom -= child.DesiredSize.Height;
        }
        return finalSize;
    }

}

Comments

Oz said…
A un moment j'avais eu besoin d'un truc similaire et le seul truc que j'avais trouvé était un Rotate 180 du stackpanel et d'un rotate 180 des elems :D

Au final, mon code ressemble au tiens ;)
Arnaud said…
Excellente idée quoiqu'un peu tordue. :-) J'aurais dû y penser!

Popular posts from this blog

Learn Meteor book available

I'm pleased to announce the general release of my Learn Meteor book. It is now available as an ebook or print book from various sources: Learn Meteor print (paperback) on Lulu Learn Meteor ebook on LeanPub Learn Meteor ebook on Barnes & Noble Learn Meteor ebook on iBooks Learn Meteor ebook on Kobo Learn Meteor ebook on Scribd Learn Meteor ebook on Inktera Page Foundry Learn Meteor ebook on 24symbols Learn Meteor ebook on Amazon US Learn Meteor ebook on Amazon UK Learn Meteor ebook on Amazon France Learn Meteor ebook on Amazon Deutschland Learn Meteor ebook on Amazon Canada Learn Meteor ebook on Amazon India Learn Meteor ebook on Amazon Brasil Learn Meteor ebook on Amazon Mexico Learn Meteor ebook on Amazon España Learn Meteor ebook on Amazon Italia Learn Meteor ebook on Amazon Netherlands Learn Meteor ebook on Amazon Japan Learn Meteor ebook on Amazon Australia More sources are coming soon for the print version. Learn Meteor has been a fun experienc