wpf使用MVVM框架,怎么计算DataGrid某一列的和并显示在一个textbox里

 我来答
FoolRabbit编程
2015-02-02 · 知道合伙人数码行家
FoolRabbit编程
知道合伙人数码行家
采纳数:619 获赞数:3805
毕业于苏州大学,4年编程经验,对WPF有研究。

向TA提问 私信TA
展开全部

代码太长,这里没法贴全

地址:https://coding.net/u/foolrabbit/p/SmallProject/git/tree/master/SmallProject/DataGridSample

<Window x:Class="DataGridSample.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:DataGridSample"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <local:ColumnConverter Grid="{x:Reference grid}" x:Key="columnConverter"/>
    </Window.Resources>
    <Grid>
        <DataGrid x:Name="grid" HorizontalAlignment="Left" Height="182" Margin="74,43,0,0" VerticalAlignment="Top" Width="331"
                  ItemsSource="{Binding DataSource}"
                  CurrentColumn="{Binding CurrColName,Converter={StaticResource columnConverter},Mode=OneWayToSource}">
        </DataGrid>
        <TextBox HorizontalAlignment="Left" Height="41" Margin="75,251,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="142"
                 Text="{Binding ColValue}"/>

    </Grid>
</Window>
追问
请问,数据源出了DataObj外可以用其他类型吗,例如自定义的一个Model,里面有一列是int类型的,我只计算这一列的和,并且是修改这一列之后就可以改变,请问这个应该怎么来写呢?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式