vote up 2 vote down star
1

I have a WPF window that has a toolbar. I have a collection of objects in my VM that I'm binding to. They appear as buttons but they always get pushed to the expanded drop down part of the toolbar. How do I make those buttons appear in the standard part of the toolbar?

I have the following XAML:

<ToolBarTray Grid.Row="1">
        <ToolBar ItemsSource="{Binding Path=MyList}" >
            <ToolBar.ItemTemplate>
                <DataTemplate  >
                    <Button ToolTip="{Binding ButtonName}" 
                        Command="{Binding Path=ButtonCommand}" >
                        <Button.Content>
                            <Image Width="32" Height="32" Source="{Binding ImageSource}"/>
                        </Button.Content>
                    </Button>
                </DataTemplate>
            </ToolBar.ItemTemplate>
        </ToolBar>
    </ToolBarTray>

I have the following C#:

public List<MyClass> MyList
    {
        get
        {
            return new List<MyClass>
                       {
                           new MyClass{ButtonName="Button1",ImageSource=@"C:\Projects\WpfApplication2\WpfApplication2\Employee.png"},
                           new MyClass{ButtonName="Button2",ImageSource=@"C:\Projects\WpfApplication2\WpfApplication2\Employee.png"},
                           new MyClass{ButtonName="Button3",ImageSource=@"C:\Projects\WpfApplication2\WpfApplication2\Employee.png"},
                           new MyClass{ButtonName="Button4",ImageSource=@"C:\Projects\WpfApplication2\WpfApplication2\Employee.png"},
                       };

        }
    }

This is the visual result:

alt text

flag

63% accept rate
If I give the toolbar the static width of 500, the same visual result happens – Rick Kierner Oct 19 at 15:03
Can you please be more specific – Shimmy Oct 19 at 15:54
@Shimmy, I don't think i can be more specific but I'll try. I want those buttons that I have in my toolbar to show up in the standard (non-overflowed) part of the toolbar – Rick Kierner Oct 19 at 16:04

2 Answers

vote up 4 vote down

There is a bug in the toolbar, if you re-size the window, the problem goes away.

The solution is using another control, like:

public class WorkaroundToolBar : ToolBar
{
    private delegate void IvalidateMeasureJob();

    public override void OnApplyTemplate()
    {
        Dispatcher.BeginInvoke(new IvalidateMeasureJob(InvalidateMeasure), 
                                     DispatcherPriority.Background, null);
        base.OnApplyTemplate();
    }
}

Check out this thread for more info

link|flag
Unfortunately, this didn't work. You are right though, when I resize the screen, the buttons appear as expected. – Rick Kierner Oct 19 at 19:54
Works in my machine, try this barebones sample I made bizcacha.com/public/WpfApplication3.rar – Eduardo Molteni Oct 19 at 22:32
This solution didn't work directly for me either. I haven't checked your supplied sample though. – Oskar Oct 20 at 15:26
1  
Sorry Eduardo, my bad. This solution works. I forgot to replace <ToolBar.ItemTemplate... with <WorkaroundToolBar.ItemTemp... as well. – Oskar Oct 22 at 15:15
Unfortunately this does not work completely. If the button-collection is empty at first, the application is launched and some buttons are added dynamically by code later the (Workaround)ToolBar is still visually invalid. It looks just like the screenshot above and redraws correctly as soon as the window is resized. Any more hints? – Buthrakaur Mar 5 at 15:44
show 1 more comment
vote up 1 vote down

You can also set the height of the toolbar in the xaml to a reasonable value which has worked for me.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.