IDE #d
hallo,
wollte mal das hier
DataBinding genannte prinzip ausprobieren.
leider wird mir immer gesagt, das der typ Samples nicht gefunden werden kann.
wenn ich oben nach using etwas eingeben will, zeigt er mir, das er Samples findet und kennt.
nun habe ich schon hoch und runter gesucht. meine schriftart angepasst und er findet sie trotzdem nicht.
was ist nun der fehler?
hier der Quelltext:
Delphi-Quellcode:
using System;
using System.Drawing;
using System.Windows.Forms;
using Samples.DataBinding.ComboBoxItems;
namespace test_mdb
{
/// <summary>
/// Description of MainForm.
/// </summary>
public class MainForm : System.Windows.Forms.Form
{
private System.Windows.Forms.Button button1;
private System.Windows.Forms.DataGrid dataGrid1;
private System.Data.DataSet dataSet1;
private Samples.DataBinding.ComboBoxItems itemCollection;
public MainForm()
{
//
// The InitializeComponent() call is required for Windows Forms designer support.
//
InitializeComponent();
ItemWithIDCollection itemCollection = new ItemWithIdCollection();
itemCollection.Add("eins", 1);
itemCollection.Add("zwei", 2);
itemCollection.Add("drei", 3);
itemCollection.Add("vier", 4);
itemCollection.DisplayFormat = " {1}:{0}";
dataGrid1.DataSource = itemCollection;