Click here to Skip to main content
15,891,633 members
Home / Discussions / WPF
   

WPF

 
QuestionStoryboard animation should be infinite Pin
Tripathi Swati29-May-10 1:13
Tripathi Swati29-May-10 1:13 
AnswerRe: Storyboard animation should be infinite Pin
Not Active29-May-10 3:22
mentorNot Active29-May-10 3:22 
GeneralRe: Storyboard animation should be infinite Pin
Tripathi Swati31-May-10 0:13
Tripathi Swati31-May-10 0:13 
QuestionData Binding - I Don't Get It Pin
#realJSOP27-May-10 12:22
mve#realJSOP27-May-10 12:22 
AnswerRe: Data Binding - I Don't Get It Pin
Pete O'Hanlon27-May-10 12:34
mvePete O'Hanlon27-May-10 12:34 
GeneralRe: Data Binding - I Don't Get It Pin
#realJSOP27-May-10 23:23
mve#realJSOP27-May-10 23:23 
GeneralRe: Data Binding - I Don't Get It Pin
Pete O'Hanlon28-May-10 4:42
mvePete O'Hanlon28-May-10 4:42 
AnswerRe: Data Binding - I Don't Get It Pin
AspDotNetDev27-May-10 13:48
protectorAspDotNetDev27-May-10 13:48 
Try this:
XML
<ListView
    x:Name="InnerListView"
    ScrollViewer.HorizontalScrollBarVisibility="Disabled"
    x:FieldModifier="public"
    BorderBrush="Black"
    BorderThickness="1"
    ItemsSource="{Binding}">
    <ListView.View>
        <GridView>
            <GridViewColumn Width="100" Header="Downloads">
                <GridViewColumn.CellTemplate>
                    <DataTemplate>
                        <DockPanel>
                            <Grid DockPanel.Dock="Right" >
                                <Label Grid.Column="1" Content="{Binding Path=WpfDownloads}" />
                            </Grid>
                        </DockPanel>
                    </DataTemplate>
                </GridViewColumn.CellTemplate>
            </GridViewColumn>
        </GridView>
    </ListView.View>
</ListView>


GeneralRe: Data Binding - I Don't Get It Pin
AspDotNetDev27-May-10 14:10
protectorAspDotNetDev27-May-10 14:10 
GeneralRe: Data Binding - I Don't Get It Pin
Not Active27-May-10 14:41
mentorNot Active27-May-10 14:41 
GeneralRe: Data Binding - I Don't Get It Pin
AspDotNetDev27-May-10 14:52
protectorAspDotNetDev27-May-10 14:52 
GeneralRe: Data Binding - I Don't Get It Pin
#realJSOP27-May-10 23:36
mve#realJSOP27-May-10 23:36 
GeneralRe: Data Binding - I Don't Get It Pin
#realJSOP27-May-10 23:49
mve#realJSOP27-May-10 23:49 
GeneralRe: Data Binding - I Don't Get It Pin
AspDotNetDev28-May-10 7:50
protectorAspDotNetDev28-May-10 7:50 
GeneralRe: Data Binding - I Don't Get It Pin
#realJSOP30-May-10 0:52
mve#realJSOP30-May-10 0:52 
QuestionDataBinding of Edit form Pin
mumumumu26-May-10 22:37
mumumumu26-May-10 22:37 
AnswerRe: DataBinding of Edit form Pin
theminidriver27-May-10 0:09
theminidriver27-May-10 0:09 
GeneralRe: DataBinding of Edit form Pin
mumumumu23-Jun-10 22:34
mumumumu23-Jun-10 22:34 
QuestionHow do I work with WIndows Forms in WPF? Pin
Xarzu26-May-10 9:14
Xarzu26-May-10 9:14 
AnswerRe: How do I work with WIndows Forms in WPF? Pin
Pete O'Hanlon26-May-10 10:05
mvePete O'Hanlon26-May-10 10:05 
QuestionSubclass Window? Pin
Kevin Marois26-May-10 7:54
professionalKevin Marois26-May-10 7:54 
AnswerRe: Subclass Window? Pin
Kunal Chowdhury «IN»26-May-10 17:53
professionalKunal Chowdhury «IN»26-May-10 17:53 
GeneralRe: Subclass Window? Pin
Kevin Marois27-May-10 4:59
professionalKevin Marois27-May-10 4:59 
AnswerRe: Subclass Window? Pin
Kunal Chowdhury «IN»27-May-10 5:11
professionalKunal Chowdhury «IN»27-May-10 5:11 
QuestionDisplay muti display data (DataGridCombobox) in WPF datagrid Pin
kartheesh26-May-10 3:35
kartheesh26-May-10 3:35 

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.