I added a button to the command buttons on the wizard... The problem is that I can not figure out how to make this button visible. I have set its his.rbtnOpenPayClient.Visibility to Telerik.WinControls.ElementVisibility.Visible but no joy. I set its ZIndex to 5 which I thought would be above any possible control that could be on top of it, still no joy. I'm at a loss at the moment. I can't figure out why this button just won't show itself.
// rbtnOpenPayClient
//
this.rbtnOpenPayClient.AccessibleDescription = "Post Payment";
this.rbtnOpenPayClient.AccessibleName = "Post Payment";
this.rbtnOpenPayClient.Alignment = System.Drawing.ContentAlignment.BottomRight;
this.rbtnOpenPayClient.Margin = new System.Windows.Forms.Padding(4);
this.rbtnOpenPayClient.MinSize = new System.Drawing.Size(100, 24);
this.rbtnOpenPayClient.Name = "rbtnOpenPayClient";
this.rbtnOpenPayClient.Text = "Post Payment";
this.rbtnOpenPayClient.TextWrap = true;
this.rbtnOpenPayClient.Visibility = Telerik.WinControls.ElementVisibility.Visible;
this.rbtnOpenPayClient.ZIndex = 5;
this.rbtnOpenPayClient.Click += new System.EventHandler(this.rbtnOpenPayClient_Click);