I'm having an issue when using the RadMarkupDialog control where the & symbol is not being saved correctly. All other symbols seem to be encoded which is causing a problem.
Using the control, if I put the following in the markup section:
<span style="font-size: 16pt">Test of the & symbol. <br />Test of the < symbol.</span>
When I click the Apply button and close the dialog, grabbing the Value (Dialog.value) gives me the following:
<html><span style="font-size: 16pt">Test of the & symbol. <br />Test of the < symbol.</span></html>
Please run the attached sample project.
1. Click the Child Form button.
2. Maximize the MDI child form either by clicking the maximized button or by double-clicking the title bar.
You will notice that there is an empty space between the docked command bar and the top edge of the form.
To reproduce: - Add shaped form with some buttons to a DPI-aware application. - Start it on an HDPI monitor. - The form is not scaled. Workaround: protected override void OnLoad(EventArgs e) { base.OnLoad(e); Screen showScreen = Screen.FromControl(this); SizeF scale = NativeMethods.GetMonitorDpi(showScreen, NativeMethods.DpiType.Effective); var currentDpi = (int)Math.Round(scale.Width * 96f, MidpointRounding.AwayFromZero); if (scale.Width != 1) { var fi = typeof(ShapedForm).GetField("currentDpi", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic); fi.SetValue(this, currentDpi); var mi = typeof(ShapedForm).GetMethod("HandleDpiChanged", System.Reflection.BindingFlags.Instance | System.Reflection.BindingFlags.NonPublic); mi.Invoke(this, null); } }
The shape defined at design-time is not generated correctly. Hence, the shape is not applied to the Form.
1. Add RadTitleBar 2. Set Image, ImageClicked and ImageHovered of RadImageButtonElement by 'Edit UI Elements' (design time). 3. Run project and hover or click image and will see that image is not shown.
The RadTitleBar shows incorrect title when the theme is Aqua. If you set the Form.Text to "Text(text)", the RadTitleBar will show "(Text(text". Work Around - Turn off RightToLeft of the TitlePrimitive. For example: C# this.FormElement.TitleBar.TitlePrimitive.RightToLeft = false;
RadTitleBar's system buttons are active while in the VSB and thus can close/minimize the VSB main form.
When the visibility property of the Minimize and Maximize system buttons in the RadtitleBar control are set to Hidden/Collapsed, they remain visible.