admin管理员组

文章数量:1122832

I'm creating a new WPF Application project with .NET 9 and would like to use the Ribbon Control that I believed was available in WPF. I haven't created a .NET desktop application for a while and always used WinForms but would like to use WPF for this. Is this possible?

I've tried adding it to the toolbox but it either doesn't show or is disabled when I select Show All. Has support for the Ribbon been removed in newer versions like .NET 9? If I create an older project with 4.8 the ribbon is available.

What are my options outside of a custom library for ribbons in .NET 9?

I'm creating a new WPF Application project with .NET 9 and would like to use the Ribbon Control that I believed was available in WPF. I haven't created a .NET desktop application for a while and always used WinForms but would like to use WPF for this. Is this possible?

I've tried adding it to the toolbox but it either doesn't show or is disabled when I select Show All. Has support for the Ribbon been removed in newer versions like .NET 9? If I create an older project with 4.8 the ribbon is available.

What are my options outside of a custom library for ribbons in .NET 9?

Share Improve this question asked yesterday Yndigo DreamYndigo Dream 113 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 0

You can find the Microsoft Ribbon Control .NET 9.0 on github

https://github.com/Dragan-Radovac-75/ribbon-net9.0-windows

All Ribbon components have been styled using framework only.

The Ribbon can also be hosted in a Winforms Application using ElementHost in Winforms.

How to use ElementHost in Winforms

本文标签: Can I use a Ribbon in WPF Application VS 2022 and NET 9Stack Overflow