Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
140
unable to add item in UltraListView
posted

I have UltraListview but when i try to add item to the ultralistview , in UI it appears weirdly as shown

The properies of list view are as follows:

this.lstCurrency.Location = new System.Drawing.Point(452, 95);
            this.lstCurrency.Name = "lstCurrency";
            this.lstCurrency.Size = new System.Drawing.Size(94,25);
            this.lstCurrency.TabIndex = 13;
            this.lstCurrency.View = Infragistics.Win.UltraWinListView.UltraListViewStyle.Details;

I am trying to add the item as

lstCurrency.Items.Add("-1", "All");

Parents
No Data
Reply
  • 71886
    Offline posted

    Hello,

    It seems to me that there is not enough room provided. Please try to change the size to

         this.lstCurrency.Size = new System.Drawing.Size(220, 220); for example.

    Please do not hesitate to contact me if you need any additional assistance.

     

Children