DataGrid和DataGridComboBoxColumn数据绑定

简介:

MainWindow.xaml文件

<Window x:Class="WpfApp20140821.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:local="clr-namespace:WpfApp20140821"
        xmlns:system="clr-namespace:System;assembly=mscorlib"
        Title="MainWindow" Height="350" Width="525" x:Name="hostCtrl">
    <Grid>
        <TabControl>
            <TabItem Header="tabItem1">
                <DataGrid x:Name="dataGrid1" AutoGenerateColumns="False">
                    <DataGrid.Columns>
                        <DataGridTextColumn Width="40" Header="案例编号" Binding="{Binding Path=Id}"/>
                        <DataGridTextColumn Width="100" Header="案卷编号" Binding="{Binding Path=RollID}"/>
                        <DataGridComboBoxColumn Width="60" Header="行政区划"
                                                ItemsSource="{x:Static local:MainWindow.SelectionList}">
                            <!--<DataGridComboBoxColumn.ElementStyle>
                                <Style TargetType="ComboBox">
                                    <Setter Property="ItemsSource" Value="{Binding Path=SelectionList,ElementName=this}"/>
                                    <Setter Property="SelectedValue" Value="{Binding Path=SelectedValue}"/>
                                </Style>
                            </DataGridComboBoxColumn.ElementStyle>-->
                        </DataGridComboBoxColumn>
                    </DataGrid.Columns>              
                </DataGrid>
            </TabItem>
            <TabItem Header="tabItem2" HorizontalAlignment="Right">           
            </TabItem>
        </TabControl>
    </Grid>
    <Window.Resources>
        <!--<ObjectDataProvider x:Key="SelectionList" MethodName="GetValues"  ObjectType="{x:Type local:MainWindow}">
            <ObjectDataProvider.MethodParameters>
                <system:String>string1</system:String>
                <system:String>string2</system:String>
            </ObjectDataProvider.MethodParameters>     
        </ObjectDataProvider>-->
    </Window.Resources>
</Window>

MainWindow.xaml.cs文件

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

using System.Data;
using System.Data.SqlClient;
using System.Collections.ObjectModel;

namespace WpfApp20140821
{
    /// <summary>
    /// MainWindow.xaml 的交互逻辑
    /// </summary>
    public partial class MainWindow : Window
    {
        static ObservableCollection<string> selectionList = new ObservableCollection<string>();
        public static ObservableCollection<string> SelectionList
        {
            get { return selectionList; }
            set { selectionList = value; }
        }
        private string GetValues(string str1,string str2)
        {
            return str1 + str2;
        }
        public MainWindow()
        {
            InitializeComponent();
            string strSql = "select * from SP_CaseInfoMGT";
            DataTable dt = SqlHelp.QueryDT(strSql);
            this.dataGrid1.ItemsSource = dt.AsDataView();

            for (int i = 0; i < dt.Rows.Count; i++)
            {
                selectionList.Add(dt.Rows[i]["District"].ToString());
            }
        }
    }
}

存在问题:ComboBox的SelectedValue的设置问题


转载:http://blog.csdn.net/foreverling/article/details/38759957

目录
相关文章
|
3月前
|
SQL 开发框架 .NET
C#一分钟浅谈:数据绑定与数据源控件
在Web开发中,数据绑定和数据源控件是实现动态网页的关键技术。本文从基础概念入手,详细讲解数据绑定的原理及其在ASP.NET中的应用,并介绍常见数据绑定方式:手动绑定和自动绑定。接着,文章重点介绍了ASP.NET中的数据源控件,如`SqlDataSource`、`ObjectDataSource`、`XmlDataSource`和`LinqDataSource`,并通过具体示例演示如何使用`SqlDataSource`和`GridView`进行数据绑定。最后,还列举了一些常见问题及其解决办法,帮助读者更好地理解和应用这些技术。
91 4
|
数据可视化
C#-DataGrid的使用(二)
DataGrid的使用
61 0
C#-DataGrid的使用(三)
C#-DataGrid的使用
62 0
|
Windows
ItemsControl的两种数据绑定方式
原文:ItemsControl的两种数据绑定方式      最近在学习ItemsControl这个控件的时候,查看了MSDN上面的一个例子,并且自己做了一些修改,这里主要使用了两种方式来进行相应的数据绑定,一种是使用DataContext,另外一种是直接将一个类绑定到前台,其实这两种方式原理差不多都...
1110 0
|
索引 数据格式 JSON
Datagrid组件的基本讲解
1.datagrid的基本属性 datagrid—- 一种接收后台数据用于,以标准表单的形式展示的组件。
1650 0