반응형
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using DevExpress.XtraEditors;
using DevExpress.XtraGrid;
namespace dddeeevvv
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
GridControl gridControl = new GridControl
{
Parent = this,
Dock=DockStyle.Fill,
DataSource=DataHelper.dataList
};
}
}
public class Product
{
public string No { get; set; }
public string Name { get; set; }
public string Price { get; set; }
public string Region { get; set; }
public string Shop { get; set; }
public Product()
{
No = string.Empty;
Name = string.Empty;
Price = string.Empty;
Region = string.Empty;
Shop = string.Empty;
}
public Product(string no, string name, string price, string region ,string shop)
{
No = no;
Name = name;
Price = price;
Region = region;
Shop = shop;
}
}
public class DataHelper
{
public static BindingList<Product> dataList = new BindingList<Product>()
{
new Product("1", "Computer", "1,000,000", "Korea", "A"),
new Product("2", "Monitor", "300,000", "KOREA", "B"),
new Product("3", "Keyboard", "100,000", "-", "C"),
new Product("4", "Mouse", "10,000", "China", "D"),
new Product("5", "Cola", "1,200", "USA", "U")
};
}
}
반응형
'C#' 카테고리의 다른 글
C# - PDA 프로그램 개발 DataGridView 정렬과 row 이동하기 (DataTable, DataView 사용) (1) | 2023.10.15 |
---|---|
C# -Thread 동기화 ! (lock 키워드/Monitor 클래스 사용) (1) | 2023.06.15 |
C# 기초 문법 진법 boolen형, 형변환, .ReadLine() , .Parse ,연산자 (0) | 2023.06.13 |
C# 개발 - 라즈베리 파이에서 온습도 데이터베이스 C# 차트로 표현 가능! (0) | 2023.05.23 |
C# WinForm - PDA 프로그램 개발 (비주얼 스튜디오 2008 코드 포함) (2) | 2023.05.17 |
C# - Visual Studio 2008 PDA 개발 하는 방법 (0) | 2023.05.08 |