2011-10-28 60 views
2

當列表框位於Tabcontrol中時,我在選擇列表框中的項目時遇到問題。 我無法選擇列表框中的任何項目。 我通過代碼隱藏動態填充列表框,我也使用拖放,雖然拖放正在使用tabcontrol。當使用Tabcontrol時,無法在列表框中選擇項目WPF

這裏是我的XAML代碼:

<Window x:Class="SPInstallApp.MainWindow" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:toolkit="clr-namespace:Microsoft.Windows.Controls;assembly=WPFToolkit.Extended" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="SharePoint 2010 - wspSync" Height="450" Width="700" AllowDrop="True" Icon="/SPInstallApp;component/Images/favicon.ico"> 

<Window.Resources> 
    <DataTemplate x:Key="CustomListBoxTemplate"> 
     <StackPanel> 
      <Grid Margin="4"> 
       <Grid.ColumnDefinitions> 
        <ColumnDefinition Width="48 "/> 
        <ColumnDefinition Width="*" /> 
       </Grid.ColumnDefinitions> 
       <Grid.RowDefinitions> 
        <RowDefinition/> 
        <RowDefinition/> 
        <RowDefinition/> 
       </Grid.RowDefinitions> 
       <Image Source="{Binding Path=ImageSource}" Grid.Column="0" Grid.RowSpan="3" Margin="0,0,5,0" /> 
       <TextBlock 
       Padding="0,5,0,0" 
       Text="{Binding Path=Title}" 
       Grid.Column="1" 
       Grid.Row="0" 
       FontWeight="Bold"/> 
       <TextBlock 
       Padding="0,0,0,5" 
       Text="{Binding Path=Description}" 
       Grid.Column="1" 
       Grid.Row="1" 
       FontStyle="Italic" /> 
       <TextBlock 
       Padding="0,0,0,5" 
       Text="{Binding Path=Status}"     
       Grid.Column="1" 
       Grid.Row="2" 
       FontStyle="Italic" Foreground="#FFDE2B2B" /> 
      </Grid>     
     </StackPanel> 
    </DataTemplate> 
</Window.Resources> 
<toolkit:BusyIndicator IsBusy="True" BusyContent="Bitte warten..." Name="busyIndicator"> 
    <Grid> 
     <Grid.ColumnDefinitions> 
      <ColumnDefinition Width="*"/> 
     </Grid.ColumnDefinitions> 
     <Grid.RowDefinitions> 
      <RowDefinition Height="Auto"/> 
      <RowDefinition Height="Auto"/> 
      <RowDefinition Height="*"/> 
      <RowDefinition Height="50"/> 
     </Grid.RowDefinitions> 
     <Label Content="Websitecollection wählen:" Grid.Row="0" Grid.Column="0" Margin="5,0,0,0" /> 
     <ComboBox Grid.Row="1" Grid.Column="0" Height="20" Margin="10,0,10,10" Name="cbWebsitecollection" SelectionChanged="CbWebsitecollectionSelectionChanged" /> 
     <TabControl Grid.Row="2" Grid.Column="0" Name="tc" SelectionChanged="TcSelectionChanged" Margin="10,0,10,0"> 
      <TabItem Header="Installieren"> 
       <ListBox AllowDrop="True" Background="#CCC" Drop="ListBoxDrop" Name="lbDropbox" IsSynchronizedWithCurrentItem="True" ItemTemplate="{StaticResource CustomListBoxTemplate}" KeyUp="LbDropboxKeyUp" /> 
      </TabItem> 
      <TabItem Header="Websitecollection"> 
       <CheckBox Content="test" /> 
      </TabItem> 
     </TabControl> 
     <Label Grid.Row="2" Grid.Column="0" VerticalAlignment="Center" HorizontalAlignment="Center" FontWeight="Bold" Content="drag 'n' drop" Margin="10" Drop="ListBoxDrop" Name="lbDescription" /> 
     <Button Grid.Row="3" Grid.Column="0" Name="cmdSync" Content="Synchronisieren" Margin="10" Width="100" HorizontalAlignment="Right" Click="CmdSyncClick" /> 
     <Image Grid.Row="3" HorizontalAlignment="Left" Name="Logo" Source="/SPInstallApp;component/Images/logo.gif" Margin="10" MouseUp="LogoMouseUp" MouseEnter="LogoMouseEnter" MouseLeave="LogoMouseLeave" /> 
    </Grid> 
</toolkit:BusyIndicator></Window> 

如果我刪除了自定義的Tabcontrol,一切工作。 我希望有人能幫助我或知道問題是什麼。

greets

+0

我試過你的代碼,只要忙信號不是「忙」,我沒有問題從列表中選擇任何東西。所以我不認爲問題出在你在這裏發佈的xaml上。也許看看你如何在列表中添加東西,或者某些事件處理器中的東西是有用的。 – Liz

回答

2

我發現了這個問題。 問題是Microsoft如何設計MessageHandles。 如果項目的子項引發消息(例如selectionChanged)並且消息不是句柄,則消息將轉到父​​項目。 所以,在我的情況下,如果我點擊ListBox中的一個項目,(未處理)消息「selectionChanged」被髮送到TabControl,這是問題所在。因爲我有自定義代碼在TabControl.selectionChanged它總是運行我的代碼,而不是選擇列表框中的項目。

的解決方法是,把這種代碼在列表框中的的SelectionChanged事件處理程序:

private void ListBox_selectionChanged(object sender, DragEventArgs e) 
{ 
    e.handled = true; 
} 

這就避免了消息從孩子的MessageHandler轉移到母公司的MessageHandler。

我希望你能夠支持我的解釋。

相關問題