Click here to Skip to main content
15,893,564 members
Home / Discussions / WPF
   

WPF

 
AnswerRe: How to keep two Combo Boxes in sync with WPF Pin
SledgeHammer0127-Jun-11 11:22
SledgeHammer0127-Jun-11 11:22 
AnswerRe: How to keep two Combo Boxes in sync with WPF Pin
Mycroft Holmes27-Jun-11 12:59
professionalMycroft Holmes27-Jun-11 12:59 
Question[SOLVED] Child Window Not Working Properly Pin
AmbiguousName27-Jun-11 0:48
AmbiguousName27-Jun-11 0:48 
AnswerRe: Child Window Not Working Properly Pin
Mycroft Holmes27-Jun-11 1:15
professionalMycroft Holmes27-Jun-11 1:15 
AnswerRe: Child Window Not Working Properly Pin
AmbiguousName27-Jun-11 1:17
AmbiguousName27-Jun-11 1:17 
QuestionHow click more that visible row in DataGrid Pin
tâzn27-Jun-11 0:09
tâzn27-Jun-11 0:09 
AnswerRe: How click more that visible row in DataGrid Pin
Mycroft Holmes27-Jun-11 1:17
professionalMycroft Holmes27-Jun-11 1:17 
GeneralRe: How click more that visible row in DataGrid Pin
tâzn27-Jun-11 5:22
tâzn27-Jun-11 5:22 
Using :
<dg:DataGrid AutoGenerateColumns="False"
SelectionMode="Extended"
ItemsSource="{Binding Source={StaticResource FlickrFeed}}"
RowDetailsVisibilityMode="VisibleWhenSelected">

<dg:DataGrid.RowDetailsTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" Margin="5">
<Image Source="{Binding XPath=media:thumbnail/@url}"
Width="60" Height="60"/>
<StackPanel Orientation="Vertical" Margin="5">
<TextBlock Foreground="CadetBlue" FontSize="20"
Width="400" TextWrapping="Wrap"
Text="{Binding XPath=media:category}"/>
</StackPanel>
</StackPanel>
</DataTemplate>
</dg:DataGrid.RowDetailsTemplate>

but only click a row.i want click more that row.
can you hepl me?

<dg:DataGrid.Columns>
<dg:DataGridTextColumn Header="Title"
Binding="{Binding XPath=title}" Width="150"/>
<dg:DataGridTextColumn Header="Published"
Binding="{Binding XPath=pubDate}"/>
<dg:DataGridTextColumn Header="Author"
Binding="{Binding XPath=media:credit}" Width="*"/>
</dg:DataGrid.Columns>

</dg:DataGrid>
</Grid>
GeneralRe: How click more that visible row in DataGrid Pin
Mycroft Holmes27-Jun-11 12:54
professionalMycroft Holmes27-Jun-11 12:54 
QuestionAny way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 18:17
SledgeHammer0124-Jun-11 18:17 
AnswerRe: Any way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 18:30
SledgeHammer0124-Jun-11 18:30 
AnswerRe: Any way to copy / clone XAML resources? Pin
Mark Salsbery24-Jun-11 18:35
Mark Salsbery24-Jun-11 18:35 
GeneralRe: Any way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 18:56
SledgeHammer0124-Jun-11 18:56 
GeneralRe: Any way to copy / clone XAML resources? Pin
Mark Salsbery24-Jun-11 19:00
Mark Salsbery24-Jun-11 19:00 
GeneralRe: Any way to copy / clone XAML resources? Pin
SledgeHammer0124-Jun-11 19:21
SledgeHammer0124-Jun-11 19:21 
AnswerRe: Any way to copy / clone XAML resources? Pin
Abhinav S26-Jun-11 7:24
Abhinav S26-Jun-11 7:24 
QuestionHow to delete a row from a datagrid based upon a value from another in WPF Pin
Member 297299224-Jun-11 11:28
Member 297299224-Jun-11 11:28 
AnswerRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Abhinav S26-Jun-11 7:28
Abhinav S26-Jun-11 7:28 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Member 297299227-Jun-11 1:18
Member 297299227-Jun-11 1:18 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Abhinav S27-Jun-11 6:54
Abhinav S27-Jun-11 6:54 
AnswerRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Mycroft Holmes26-Jun-11 12:17
professionalMycroft Holmes26-Jun-11 12:17 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Member 297299227-Jun-11 1:20
Member 297299227-Jun-11 1:20 
GeneralRe: How to delete a row from a datagrid based upon a value from another in WPF Pin
Mycroft Holmes27-Jun-11 2:52
professionalMycroft Holmes27-Jun-11 2:52 
QuestionMVVM: best way to wire up this Command scenario? Pin
SledgeHammer0124-Jun-11 10:29
SledgeHammer0124-Jun-11 10:29 
AnswerRe: MVVM: best way to wire up this Command scenario? Pin
Pete O'Hanlon24-Jun-11 10:37
mvePete O'Hanlon24-Jun-11 10:37 

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.