WPF datatemplate ItemsControl指定初始值和最终值

时间:2010-09-30 02:59:23

标签: .net wpf datatemplate itemscontrol

我一直在WPF中使用ItemsControl来保持安静。我正在使用MVVM来开发我的应用程序。

现在我遇到了一个问题。我有一个要求,其中in基于IList中的值的数量<> ,我必须显示之间用逗号分隔的TextBox的数量。我编写了一个ItemsControl,它迭代绑定的IList<>并根据元素数显示TextBoxes。

我写过像这样的DataTemplate

<DataTemplate x:Key="ParameterDisplay1">  
    <ItemsControl ItemsSource="{Binding Parameters}">  
        <ItemsControl.ItemsPanel>  
            <ItemsPanelTemplate>  
                <StackPanel Orientation="Horizontal"></StackPanel>  
            </ItemsPanelTemplate>  
        </ItemsControl.ItemsPanel>  
        <ItemsControl.ItemTemplate>  
            <DataTemplate>  
                <StackPanel Orientation="Horizontal" >  
                    <TextBox  Width="40" Height="auto" Margin="2" Text="{Binding ProcessData}"></TextBox>  
                    <TextBlock Text=" , " Width="auto" Height="auto" Margin="2" FontSize="15"></TextBlock>  
                </StackPanel>  
            </DataTemplate>  
        </ItemsControl.ItemTemplate>  
     </ItemsControl>  
</DataTemplate>  

我正在使用它:

<dg:DataGrid x:Name="DataGrid_Standard" toGenerateColumns="False">
    <dg:DataGrid.Columns>  
        <dg:DataGridTemplateColumn Header="Parameters" Width="SizeToCells" IsReadOnly="True"  
            CellTemplateSelector="{StaticResource paramTemplateSelector}">
        </dg:DataGridTemplateColumn> 
    </dg:DataGrid.Columns>  
</dg:DataGrid>  

但问题是,我必须在最后一个TextBox和之后显示“(在第一个TextBox和”之前)“,”< / strong>在TextBox之间。
我必须显示这样的东西::::&gt; **(TextBox,TextBox,TextBox)**

使用代码隐藏实现这一点很简单,但我不想在我的代码隐藏文件中编写任何内容,我希望我的View清晰。我想在XAML文件中编写所有内容关于如何执行此操作的示例说明将非常有用!!

1 个答案:

答案 0 :(得分:5)

使用某种控件包装ItemsControl,将括号放在任一侧(可能是停靠面板)。

然后,在项目前面显示的项目模板中添加逗号。使用具有“先前数据”类型的相对来源的数据触发器,这样当前一项为空时,您隐藏逗号(这样您就不会看到第一项的逗号)。

修改

这是一些显示我的意思的代码。我没有您的数据类型或网格组件,因此它可能不太正确。然而,它突出了我提到的技术。

<DataTemplate x:Key="ParameterDisplay1">
  <StackPanel Orientation="Horizontal">
    <TextBlock>(</TextBlock>
    <ItemsControl ItemsSource="{Binding Parameters}">
      <ItemsControl.ItemsPanel>
        <ItemsPanelTemplate>
          <StackPanel Orientation="Horizontal"></StackPanel>
        </ItemsPanelTemplate>
      </ItemsControl.ItemsPanel>
      <ItemsControl.ItemTemplate>
        <DataTemplate>
          <StackPanel Orientation="Horizontal" >
            <TextBlock Text=", " Name="Comma"></TextBlock>
            <TextBox Width="40" Text="{Binding ProcessData}"></TextBox>
          </StackPanel>
          <!-- Make a trigger that hides the comma for the first item -->
          <DataTemplate.Triggers>
            <DataTrigger Binding="{Binding RelativeSource={RelativeSource PreviousData}}" Value="{x:Null}">
              <Setter TargetName="Comma" Property="Visibility" Value="Collapsed" />
            </DataTrigger>
          </DataTemplate.Triggers>
        </DataTemplate>
      </ItemsControl.ItemTemplate>
    </ItemsControl>
    <TextBlock>)</TextBlock>
  </StackPanel>
</DataTemplate>