Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im Using Composite Aplication Guidiance Pattern for building my WPF application. In my Shell i have a tabcontrol wich contains a region for dynamicly load Views into the region. The views is loaded into new tabs in the TabControl.

  <TabControl     
      AutomationProperties.AutomationId="MainTabControl" 
      cal:RegionManager.RegionName="{x:Static inf:RegionNames.MainRegion}" 
      Width="Auto" Height="Auto" Margin="10,10,0,0" 
      HorizontalAlignment="Stretch"                            
      IsSynchronizedWithCurrentItem="True"
      ItemTemplate="{StaticResource TabItemTemplate}"
SelectionChanged="TabControl_SelectionChanged">

I have a DataTemplate "TabItemTemplate" for implementing a CloseButton. I cant figure out how to bind the button´s command in the DataTemplate to the Close Command in the presentationModel. If I bind the command to a CompositCommand, the command is executet. But then I must figure out wich tab that close button was pressed and only execute closeCommand in that PresentationModel.. Below is the dataTemplate.

<DataTemplate x:Key="ClosableTabItemTemplate">
            <DockPanel Width="120">
                <Button 
                    Command="inf:CloseCommands.CloseCommand"
                    Content="X"
                    Cursor="Hand"
                    DockPanel.Dock="Right"
                    Focusable="False"
                    FontFamily="Courier" 
                    FontSize="9"
                    FontWeight="Bold"  
                    Margin="0,1,0,0"
                    Padding="0"
                    VerticalContentAlignment="Bottom"
                    Width="16" Height="16" 
                    />
                <ContentPresenter 
        Content="{Binding}" 
        VerticalAlignment="Center" 
        />
            </DockPanel>
        </DataTemplate>

Does anyone know how to solve this binding problem??

share|improve this question

2 Answers

You should either bind to a command instance on your viewmodel, such as a DelegateCommand exposed by a property, or bind the CommandParameter to the DataContext of the TabItem so that a shared command can be passed the item.

share|improve this answer
I already tried to bind to a DelegateCommand, it doesnt seems to Work. I seems like the DataTemplate does not know the DataContext of the TabItem. – KaJo Mar 23 '09 at 6:55
How do you add your view into the region ? (what does your code look like?) – Denis Troller Mar 23 '09 at 12:53
up vote 0 down vote accepted

I´ve found a solution to this problem. The problem was when i bind a UserControl to a TabControl, it´s only the contentpane´s datacontext that is set to the usercontrol and the datacontext for the headerpane is still null. But if I define two datatemplates, one for the item and one for the content, and then add the presentationModel to the region, then dataContext for both item and content is populated. I can then in itemTemplate bind to a delegateCommand Property in the presentationModel.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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