Click here to Skip to main content
15,887,946 members
Home / Discussions / WPF
   

WPF

 
Questionwpf ritchbox Pin
MemberDotNetting6-May-12 3:41
MemberDotNetting6-May-12 3:41 
AnswerRe: WPF RichTextBox Pin
Wayne Gaylard6-May-12 21:07
professionalWayne Gaylard6-May-12 21:07 
Questionadd wpf user control Pin
MemberDotNetting4-May-12 22:22
MemberDotNetting4-May-12 22:22 
AnswerRe: add wpf user control Pin
Abhinav S5-May-12 21:40
Abhinav S5-May-12 21:40 
QuestionWPF DataGrid cell click Pin
LAPEC4-May-12 1:06
LAPEC4-May-12 1:06 
AnswerRe: WPF DataGrid cell click Pin
Erik Rude4-May-12 1:31
Erik Rude4-May-12 1:31 
GeneralRe: WPF DataGrid cell click Pin
LAPEC4-May-12 1:51
LAPEC4-May-12 1:51 
GeneralRe: WPF DataGrid cell click Pin
Erik Rude4-May-12 2:46
Erik Rude4-May-12 2:46 
I don't know any quick way to do it with Grid, but you can get a very similar look by using a list view - maybe something along these lines: Other than that wait for some one else to come up with the answer. Or read up on Binding.
C#
<ListView Name="lvwCommandLog" 
                  ItemsSource="{Binding Path=CommandLog, Mode=TwoWay}" 
                  MouseDoubleClick="lvwCommandLog_MouseDoubleClick" 
                  ToolTip="Double click to run this command again" >
            <ListView.View >
                <GridView >
                    <GridViewColumn Header="Name" DisplayMemberBinding="{Binding Name, Mode=TwoWay}" ></GridViewColumn>
                    <GridViewColumn Header="Age" DisplayMemberBinding="{Binding Age}" ></GridViewColumn>
                    <GridViewColumn Header="Time" DisplayMemberBinding="{Binding Path=Time, StringFormat=\{0:h\\:mm\\:ss\}}"></GridViewColumn>
                </GridView>
            </ListView.View>
            <ListView.ContextMenu>
                <ContextMenu>
                    <MenuItem Header="Do Something" Click="MenuItem_Click" />
                </ContextMenu>
            </ListView.ContextMenu>
        </ListView>
        <Text Text="{Binding Name}"/>

AnswerRe: WPF DataGrid cell click Pin
Jeremy Hutchinson4-May-12 2:46
professionalJeremy Hutchinson4-May-12 2:46 
Questionuser control Pin
MemberDotNetting3-May-12 13:40
MemberDotNetting3-May-12 13:40 
AnswerRe: user control Pin
Jeremy Hutchinson4-May-12 2:34
professionalJeremy Hutchinson4-May-12 2:34 
AnswerRe: user control Pin
Alisaunder6-May-12 2:23
Alisaunder6-May-12 2:23 
QuestionHow to get the value of textbox in ViewModel in WPF - MVVM Pin
Rocky#3-May-12 4:02
Rocky#3-May-12 4:02 
AnswerRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Jeremy Hutchinson3-May-12 5:30
professionalJeremy Hutchinson3-May-12 5:30 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Rocky#3-May-12 20:42
Rocky#3-May-12 20:42 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Jeremy Hutchinson4-May-12 1:48
professionalJeremy Hutchinson4-May-12 1:48 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Rocky#4-May-12 3:05
Rocky#4-May-12 3:05 
AnswerRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Mycroft Holmes3-May-12 12:46
professionalMycroft Holmes3-May-12 12:46 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Rocky#3-May-12 20:19
Rocky#3-May-12 20:19 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Pete O'Hanlon3-May-12 20:29
mvePete O'Hanlon3-May-12 20:29 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Rocky#3-May-12 20:43
Rocky#3-May-12 20:43 
AnswerRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Wayne Gaylard3-May-12 21:09
professionalWayne Gaylard3-May-12 21:09 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Rocky#4-May-12 3:04
Rocky#4-May-12 3:04 
GeneralRe: How to get the value of textbox in ViewModel in WPF - MVVM Pin
Wayne Gaylard4-May-12 20:22
professionalWayne Gaylard4-May-12 20:22 
QuestionHelp Understanding Dependancy Properties Pin
Kevin Marois2-May-12 7:10
professionalKevin Marois2-May-12 7:10 

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.