how to add column headers to a listview
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
add a comment |
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
add a comment |
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
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
wpf xaml listview
edited Nov 12 at 15:33
Rob
1,0091022
1,0091022
asked Nov 12 at 14:40
nikotromus
236320
236320
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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>
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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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>
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
add a comment |
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>
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
add a comment |
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>
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>
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
add a comment |
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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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