Click here to Skip to main content
15,886,919 members
Home / Discussions / WPF
   

WPF

 
QuestionHow can I change a StaticResource by code behind Pin
existenc9-May-09 21:44
existenc9-May-09 21:44 
AnswerRe: How can I change a StaticResource by code behind Pin
Philipp Sumi9-May-09 23:19
Philipp Sumi9-May-09 23:19 
GeneralRe: How can I change a StaticResource by code behind Pin
ravikiran_ch23-Sep-11 8:56
ravikiran_ch23-Sep-11 8:56 
AnswerRe: How can I change a StaticResource by code behind Pin
Pete O'Hanlon10-May-09 8:50
mvePete O'Hanlon10-May-09 8:50 
AnswerRe: How can I change a StaticResource by code behind Pin
Niladri_Biswas13-Jun-09 4:24
Niladri_Biswas13-Jun-09 4:24 
AnswerRe: How can I change a StaticResource by code behind Pin
BernalF18-Aug-10 4:42
BernalF18-Aug-10 4:42 
QuestionWPF newbie in it with some problems arround formatting a ListView Pin
existenc9-May-09 8:56
existenc9-May-09 8:56 
AnswerRe: WPF newbie in it with some problems arround formatting a ListView [modified] Pin
Mark Salsbery9-May-09 11:11
Mark Salsbery9-May-09 11:11 
You could probably dig into the ListView style and template to get what you want,
but I personally would use the DataGrid control from the WPF toolkit (assuming you're
using the Grid view on your ListView).

Using the DataGrid, getting your desired look and feel (single cell select, no resizing
columns, no header mouseover effect) would be as simple as something like this:
<wpftk:DataGrid x:Name="dataGrid1" AutoGenerateColumns="True" SelectionUnit="Cell" SelectionMode="Single"
                     CanUserResizeColumns="False" CanUserSortColumns="False"
                     ItemsSource="..." GridLinesVisibility="All" VerticalGridLinesBrush="Black" HeadersVisibility="Column"
                     AlternatingRowBackground="LightSteelBlue" Height="300" >
    <wpftk:DataGrid.ColumnHeaderStyle>
        <Style TargetType="{x:Type wpftk:DataGridColumnHeader}" BasedOn="{StaticResource {x:Type wpftk:DataGridColumnHeader}}">
            <Setter Property="Background" Value="SteelBlue" />
            <Setter Property="Foreground" Value="White" />
            <Setter Property="HorizontalContentAlignment" Value="Center" />
        </Style>
    </wpftk:DataGrid.ColumnHeaderStyle>
</wpftk:DataGrid>


*edit* Also, see Jaime Rodriguez's three part article on the DataGrid:

Dabbling Around the New WPF DataGrid[^]

It's a little "old" but covers the basics well Smile | :)

Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

modified on Saturday, May 9, 2009 5:17 PM

GeneralRe: WPF newbie in it with some problems arround formatting a ListView Pin
existenc9-May-09 21:36
existenc9-May-09 21:36 
QuestionIs there a way to run wpfbrowser application in linux? Pin
Krishnraj9-May-09 0:28
Krishnraj9-May-09 0:28 
AnswerRe: Is there a way to run wpfbrowser application in linux? Pin
Philipp Sumi9-May-09 0:47
Philipp Sumi9-May-09 0:47 
QuestionEvent Handling Pin
#realJSOP8-May-09 5:35
mve#realJSOP8-May-09 5:35 
AnswerRe: Event Handling Pin
Nish Nishant8-May-09 6:25
sitebuilderNish Nishant8-May-09 6:25 
GeneralRe: Event Handling Pin
#realJSOP8-May-09 6:30
mve#realJSOP8-May-09 6:30 
GeneralRe: Event Handling Pin
Nish Nishant8-May-09 6:53
sitebuilderNish Nishant8-May-09 6:53 
GeneralRe: Event Handling Pin
Mark Salsbery8-May-09 7:36
Mark Salsbery8-May-09 7:36 
GeneralRe: Event Handling Pin
#realJSOP8-May-09 10:54
mve#realJSOP8-May-09 10:54 
AnswerRe: Event Handling Pin
Philipp Sumi8-May-09 6:41
Philipp Sumi8-May-09 6:41 
GeneralRe: Event Handling Pin
Nish Nishant8-May-09 6:57
sitebuilderNish Nishant8-May-09 6:57 
GeneralRe: Event Handling Pin
Philipp Sumi8-May-09 7:00
Philipp Sumi8-May-09 7:00 
AnswerRe: Event Handling Pin
Pete O'Hanlon9-May-09 0:37
mvePete O'Hanlon9-May-09 0:37 
QuestionCreate pixel dimensions of a text string Pin
califax2k8-May-09 5:02
califax2k8-May-09 5:02 
AnswerRe: Create pixel dimensions of a text string Pin
#realJSOP8-May-09 5:42
mve#realJSOP8-May-09 5:42 
GeneralRe: Create pixel dimensions of a text string Pin
califax2k10-May-09 21:24
califax2k10-May-09 21:24 
QuestionBasedOn Property Pin
#realJSOP8-May-09 2:52
mve#realJSOP8-May-09 2:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.