我在组合框中面临一个问题,它与绑定源有关。 问题是当我选择combox时它没有显示文本。但是我得到了所选的值。
这是我在表单设计器类中生成的代码。
这里partysource和purchaseOrderSource是bindisng source.party source绑定到对象被叫方,purchaseOrderSource绑定到object purchaseorder。
this.LstSupplier.DisplayMember = "ItemName";
this.LstSupplier.ValueMember = "ItemId";
this.LstSupplier.DataSource = this.partysource;
this.LstSupplier.DataBindings.Add(new System.Windows.Forms.Binding("SelectedValue", this.purchaseOrderSource, "PartyId", true));
this.LstSupplier.FormattingEnabled = true;
this.LstSupplier.Name = "LstSupplier";
我该如何解决这个问题?