Why is my DatePicker (BunifuUI) not showing when clicked on client?

193 Views Asked by At

I have an C# WPF application that has the Bunifu datepicker. When I click the datepicker 'dropdown', the calendar will show up. This works for an other client as well. However, I have a client right now that can't click the dropdown. Or at least, nothing happens.. No calendar window will popup.

As I'm not very good in programming I've no idea what it can be. Code is working for me and the other client.

Datepicker WITH calendar

// DateProductivity
// 
this.DateProductivity.BackColor = System.Drawing.Color.SeaGreen;
this.DateProductivity.BorderRadius = 0;
this.DateProductivity.ForeColor = System.Drawing.Color.White;
this.DateProductivity.Format = System.Windows.Forms.DateTimePickerFormat.Long;
this.DateProductivity.FormatCustom = null;
this.DateProductivity.Location = new System.Drawing.Point(96, 28);
this.DateProductivity.Name = "DateProductivity";
this.DateProductivity.Size = new System.Drawing.Size(210, 35);
this.DateProductivity.TabIndex = 0;
this.DateProductivity.Value = new System.DateTime(2019, 5, 27, 22, 31, 49, 0);
1

There are 1 best solutions below

0
Tim Hellegers On BEST ANSWER

The solution of commenting out this.Dateproductivity didn't work.

However, I replaced the datpicker from the BunifuUI with the regular datepicker. Now it seems to be working.