how to add column headers to a listview










0














I have a listview built and styled the way I want it. Now I am simply trying to add column headers to it, but it seems to be more difficult than I imagined. Is it necessary to add some sort of datagrid to this xaml model to get column headers, or is there just something very basic I can add?



<ListView ItemsSource="Binding PlayerOC, Mode=TwoWay" AlternationCount="2">
<ListView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="ListBoxItem">
<Border Name="_Border"
Padding="0"
SnapsToDevicePixels="true">
<ContentPresenter />
</Border>
<ControlTemplate.Triggers>
<Trigger Property="ItemsControl.AlternationIndex" Value="0">
<Setter Property="Background" Value="#19f39611"></Setter>
</Trigger>
<Trigger Property="ItemsControl.AlternationIndex" Value="1">
<Setter Property="Background" Value="#19000000"></Setter>
</Trigger>

<Trigger Property="IsSelected" Value="true">
<Setter TargetName="_Border" Property="Background" Value="White"/>
<Setter TargetName="_Border" Property="Padding" Value="1"/>
<Setter Property="Foreground" Value="White"/>
<Setter Property="FontWeight" Value="Bold"/>
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ListView.ItemContainerStyle>
<ListView.ItemTemplate >
<DataTemplate>
<StackPanel Orientation="Horizontal" Background="Binding RowColor" >
<TextBlock Text="Binding PlayerNumber" Padding="5" Width="50" />
<TextBlock Text="Binding PlayerName" Padding="5" Width="200" />
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>









share|improve this question




























    0














    I have a listview built and styled the way I want it. Now I am simply trying to add column headers to it, but it seems to be more difficult than I imagined. Is it necessary to add some sort of datagrid to this xaml model to get column headers, or is there just something very basic I can add?



    <ListView ItemsSource="Binding PlayerOC, Mode=TwoWay" AlternationCount="2">
    <ListView.ItemContainerStyle>
    <Style TargetType="ListViewItem">
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="ListBoxItem">
    <Border Name="_Border"
    Padding="0"
    SnapsToDevicePixels="true">
    <ContentPresenter />
    </Border>
    <ControlTemplate.Triggers>
    <Trigger Property="ItemsControl.AlternationIndex" Value="0">
    <Setter Property="Background" Value="#19f39611"></Setter>
    </Trigger>
    <Trigger Property="ItemsControl.AlternationIndex" Value="1">
    <Setter Property="Background" Value="#19000000"></Setter>
    </Trigger>

    <Trigger Property="IsSelected" Value="true">
    <Setter TargetName="_Border" Property="Background" Value="White"/>
    <Setter TargetName="_Border" Property="Padding" Value="1"/>
    <Setter Property="Foreground" Value="White"/>
    <Setter Property="FontWeight" Value="Bold"/>
    </Trigger>
    </ControlTemplate.Triggers>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    </Style>
    </ListView.ItemContainerStyle>
    <ListView.ItemTemplate >
    <DataTemplate>
    <StackPanel Orientation="Horizontal" Background="Binding RowColor" >
    <TextBlock Text="Binding PlayerNumber" Padding="5" Width="50" />
    <TextBlock Text="Binding PlayerName" Padding="5" Width="200" />
    </StackPanel>
    </DataTemplate>
    </ListView.ItemTemplate>
    </ListView>









    share|improve this question


























      0












      0








      0







      I have a listview built and styled the way I want it. Now I am simply trying to add column headers to it, but it seems to be more difficult than I imagined. Is it necessary to add some sort of datagrid to this xaml model to get column headers, or is there just something very basic I can add?



      <ListView ItemsSource="Binding PlayerOC, Mode=TwoWay" AlternationCount="2">
      <ListView.ItemContainerStyle>
      <Style TargetType="ListViewItem">
      <Setter Property="Template">
      <Setter.Value>
      <ControlTemplate TargetType="ListBoxItem">
      <Border Name="_Border"
      Padding="0"
      SnapsToDevicePixels="true">
      <ContentPresenter />
      </Border>
      <ControlTemplate.Triggers>
      <Trigger Property="ItemsControl.AlternationIndex" Value="0">
      <Setter Property="Background" Value="#19f39611"></Setter>
      </Trigger>
      <Trigger Property="ItemsControl.AlternationIndex" Value="1">
      <Setter Property="Background" Value="#19000000"></Setter>
      </Trigger>

      <Trigger Property="IsSelected" Value="true">
      <Setter TargetName="_Border" Property="Background" Value="White"/>
      <Setter TargetName="_Border" Property="Padding" Value="1"/>
      <Setter Property="Foreground" Value="White"/>
      <Setter Property="FontWeight" Value="Bold"/>
      </Trigger>
      </ControlTemplate.Triggers>
      </ControlTemplate>
      </Setter.Value>
      </Setter>
      </Style>
      </ListView.ItemContainerStyle>
      <ListView.ItemTemplate >
      <DataTemplate>
      <StackPanel Orientation="Horizontal" Background="Binding RowColor" >
      <TextBlock Text="Binding PlayerNumber" Padding="5" Width="50" />
      <TextBlock Text="Binding PlayerName" Padding="5" Width="200" />
      </StackPanel>
      </DataTemplate>
      </ListView.ItemTemplate>
      </ListView>









      share|improve this question















      I have a listview built and styled the way I want it. Now I am simply trying to add column headers to it, but it seems to be more difficult than I imagined. Is it necessary to add some sort of datagrid to this xaml model to get column headers, or is there just something very basic I can add?



      <ListView ItemsSource="Binding PlayerOC, Mode=TwoWay" AlternationCount="2">
      <ListView.ItemContainerStyle>
      <Style TargetType="ListViewItem">
      <Setter Property="Template">
      <Setter.Value>
      <ControlTemplate TargetType="ListBoxItem">
      <Border Name="_Border"
      Padding="0"
      SnapsToDevicePixels="true">
      <ContentPresenter />
      </Border>
      <ControlTemplate.Triggers>
      <Trigger Property="ItemsControl.AlternationIndex" Value="0">
      <Setter Property="Background" Value="#19f39611"></Setter>
      </Trigger>
      <Trigger Property="ItemsControl.AlternationIndex" Value="1">
      <Setter Property="Background" Value="#19000000"></Setter>
      </Trigger>

      <Trigger Property="IsSelected" Value="true">
      <Setter TargetName="_Border" Property="Background" Value="White"/>
      <Setter TargetName="_Border" Property="Padding" Value="1"/>
      <Setter Property="Foreground" Value="White"/>
      <Setter Property="FontWeight" Value="Bold"/>
      </Trigger>
      </ControlTemplate.Triggers>
      </ControlTemplate>
      </Setter.Value>
      </Setter>
      </Style>
      </ListView.ItemContainerStyle>
      <ListView.ItemTemplate >
      <DataTemplate>
      <StackPanel Orientation="Horizontal" Background="Binding RowColor" >
      <TextBlock Text="Binding PlayerNumber" Padding="5" Width="50" />
      <TextBlock Text="Binding PlayerName" Padding="5" Width="200" />
      </StackPanel>
      </DataTemplate>
      </ListView.ItemTemplate>
      </ListView>






      wpf xaml listview






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 12 at 15:33









      Rob

      1,0091022




      1,0091022










      asked Nov 12 at 14:40









      nikotromus

      236320




      236320






















          1 Answer
          1






          active

          oldest

          votes


















          1














          This is the usual way of adding columns to the ListView:



          <ListView ItemsSource="Binding Data" BorderBrush="Gray" BorderThickness="1" Margin="5">
          <ListView.View>
          <GridView>
          <GridViewColumn DisplayMemberBinding="Binding Id" Header="Id"/>
          <GridViewColumn DisplayMemberBinding="Binding Name" Header="Name"/>
          </GridView>
          </ListView.View>
          </ListView>





          share|improve this answer




















          • It works. I tried this before but I thought I had to remove the data template holding the stack panel, which completely broke down the model. Thanks. You got me to look at this a different way.
            – nikotromus
            Nov 12 at 14:58










          • Actually, since I already have an Itemsource, I don't even need the DisplayMemberBinding attribute. All I need are labels for the columns.
            – nikotromus
            Nov 12 at 15:07










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264488%2fhow-to-add-column-headers-to-a-listview%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          This is the usual way of adding columns to the ListView:



          <ListView ItemsSource="Binding Data" BorderBrush="Gray" BorderThickness="1" Margin="5">
          <ListView.View>
          <GridView>
          <GridViewColumn DisplayMemberBinding="Binding Id" Header="Id"/>
          <GridViewColumn DisplayMemberBinding="Binding Name" Header="Name"/>
          </GridView>
          </ListView.View>
          </ListView>





          share|improve this answer




















          • It works. I tried this before but I thought I had to remove the data template holding the stack panel, which completely broke down the model. Thanks. You got me to look at this a different way.
            – nikotromus
            Nov 12 at 14:58










          • Actually, since I already have an Itemsource, I don't even need the DisplayMemberBinding attribute. All I need are labels for the columns.
            – nikotromus
            Nov 12 at 15:07















          1














          This is the usual way of adding columns to the ListView:



          <ListView ItemsSource="Binding Data" BorderBrush="Gray" BorderThickness="1" Margin="5">
          <ListView.View>
          <GridView>
          <GridViewColumn DisplayMemberBinding="Binding Id" Header="Id"/>
          <GridViewColumn DisplayMemberBinding="Binding Name" Header="Name"/>
          </GridView>
          </ListView.View>
          </ListView>





          share|improve this answer




















          • It works. I tried this before but I thought I had to remove the data template holding the stack panel, which completely broke down the model. Thanks. You got me to look at this a different way.
            – nikotromus
            Nov 12 at 14:58










          • Actually, since I already have an Itemsource, I don't even need the DisplayMemberBinding attribute. All I need are labels for the columns.
            – nikotromus
            Nov 12 at 15:07













          1












          1








          1






          This is the usual way of adding columns to the ListView:



          <ListView ItemsSource="Binding Data" BorderBrush="Gray" BorderThickness="1" Margin="5">
          <ListView.View>
          <GridView>
          <GridViewColumn DisplayMemberBinding="Binding Id" Header="Id"/>
          <GridViewColumn DisplayMemberBinding="Binding Name" Header="Name"/>
          </GridView>
          </ListView.View>
          </ListView>





          share|improve this answer












          This is the usual way of adding columns to the ListView:



          <ListView ItemsSource="Binding Data" BorderBrush="Gray" BorderThickness="1" Margin="5">
          <ListView.View>
          <GridView>
          <GridViewColumn DisplayMemberBinding="Binding Id" Header="Id"/>
          <GridViewColumn DisplayMemberBinding="Binding Name" Header="Name"/>
          </GridView>
          </ListView.View>
          </ListView>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 12 at 14:51









          Rob

          1,0091022




          1,0091022











          • It works. I tried this before but I thought I had to remove the data template holding the stack panel, which completely broke down the model. Thanks. You got me to look at this a different way.
            – nikotromus
            Nov 12 at 14:58










          • Actually, since I already have an Itemsource, I don't even need the DisplayMemberBinding attribute. All I need are labels for the columns.
            – nikotromus
            Nov 12 at 15:07
















          • It works. I tried this before but I thought I had to remove the data template holding the stack panel, which completely broke down the model. Thanks. You got me to look at this a different way.
            – nikotromus
            Nov 12 at 14:58










          • Actually, since I already have an Itemsource, I don't even need the DisplayMemberBinding attribute. All I need are labels for the columns.
            – nikotromus
            Nov 12 at 15:07















          It works. I tried this before but I thought I had to remove the data template holding the stack panel, which completely broke down the model. Thanks. You got me to look at this a different way.
          – nikotromus
          Nov 12 at 14:58




          It works. I tried this before but I thought I had to remove the data template holding the stack panel, which completely broke down the model. Thanks. You got me to look at this a different way.
          – nikotromus
          Nov 12 at 14:58












          Actually, since I already have an Itemsource, I don't even need the DisplayMemberBinding attribute. All I need are labels for the columns.
          – nikotromus
          Nov 12 at 15:07




          Actually, since I already have an Itemsource, I don't even need the DisplayMemberBinding attribute. All I need are labels for the columns.
          – nikotromus
          Nov 12 at 15:07

















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53264488%2fhow-to-add-column-headers-to-a-listview%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Top Tejano songwriter Luis Silva dead of heart attack at 64

          ReactJS Fetched API data displays live - need Data displayed static

          政党