Rounded corners for ContextMenu

1 Answer 12 Views
ContextMenu Themes and Visual Style Builder
Adrian
Top achievements
Rank 1
Adrian asked on 23 Nov 2025, 09:55 PM

¡Hi everyone! Is there a possibility to have a RadContexMenu with rounded corners ?
I already change the styles via theme, but when I open the context menu, it has some white square corners behind.

The version I have right now is 2016 SP1

1 Answer, 1 is accepted

Sort by
0
Dinko | Tech Support Engineer
Telerik team
answered on 25 Nov 2025, 12:19 PM

Hi Andrian,

I appreciate your interest in our controls.

I recommend upgrading to the latest version of our controls, since the one you're using is quite outdated. With the latest version, you'll be able to utilize the built-in rounded corners feature. This functionality is explained in more detail in the Rounded Corners help article. With the settings below, as described in the article, you can apply round corners to the ContextMenu used in our controls:

public Form2()
{
    InitializeComponent();

    Telerik.WinControls.WindowsSettings.PopupRoundedCornersStyleDefaultValue = RoundedCornersStyle.Round;
    Telerik.WinControls.WindowsSettings.EnableRoundedCornersDefaultValue = true;
}
Also in the app.manifest file:

<?xml version="1.0" encoding="utf-8"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
	<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
	<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
		<security>
			<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
				<requestedExecutionLevel level="asInvoker" uiAccess="false" />
			</requestedPrivileges>
		</security>
	</trustInfo>

	<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
		<application>
			<!-- A list of all Windows versions that this application is designed to work with. 
      Windows will automatically select the most compatible environment.-->
			<!-- Windows 10 -->
			<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>

		</application>
	</compatibility>
</assembly>

Here is how it looks:

Again, this functionality is not available in the version specified in your post. By migrating to our latest version, you can take advantage of this functionality and many others added to our controls, including new controls, bug fixes, etc.

Let me know if you need help migrating to a newer version.

Regards,
Dinko | Tech Support Engineer
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
ContextMenu Themes and Visual Style Builder
Asked by
Adrian
Top achievements
Rank 1
Answers by
Dinko | Tech Support Engineer
Telerik team
Share this question
or