Ribbon applications in c#

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • smnbss

    #1

    Ribbon applications in c#

    Is it possible to write a ribbon application from scratch using c#?

    here we can see how to build one using c++ (MFC office style)

    http://msdn.microsoft.com/en-gb/visualc/dd277653.aspx


    Is it possible to do the same in c#??

    Since it's possible to extend Word with c# it should be possible to create a
    ribbon application in C#...

    Or do I need to create an host in c++ and add the controls in c#?

    thanks a lot

    smnbss

  • Nicholas Paldino [.NET/C# MVP]

    #2
    Re: Ribbon applications in c#

    smnbss,

    There isn't a managed wrapper for those controls, so you are going to
    have to host .NET in your C++ app, or create managed wrappers for the
    Ribbon.


    --
    - Nicholas Paldino [.NET/C# MVP]
    - mvp@spam.guard. caspershouse.co m

    "smnbss" <smnbss@hotmail .comwrote in message
    news:B67BB585-27B0-4D28-9E63-CF71B67CE3AF@mi crosoft.com...
    Is it possible to write a ribbon application from scratch using c#?
    >
    here we can see how to build one using c++ (MFC office style)
    >
    http://msdn.microsoft.com/en-gb/visualc/dd277653.aspx
    >
    >
    Is it possible to do the same in c#??
    >
    Since it's possible to extend Word with c# it should be possible to create
    a ribbon application in C#...
    >
    Or do I need to create an host in c++ and add the controls in c#?
    >
    thanks a lot
    >
    smnbss

    Comment

    • TAB

      #3
      Re: Ribbon applications in c#

      Maybe this is what you are looking for




      "smnbss" <smnbss@hotmail .comskrev i meddelandet news:B67BB585-27B0-4D28-9E63-CF71B67CE3AF@mi crosoft.com...
      Is it possible to write a ribbon application from scratch using c#?

      here we can see how to build one using c++ (MFC office style)

      http://msdn.microsoft.com/en-gb/visualc/dd277653.aspx


      Is it possible to do the same in c#??

      Since it's possible to extend Word with c# it should be possible to create a
      ribbon application in C#...

      Or do I need to create an host in c++ and add the controls in c#?

      thanks a lot

      smnbss
      >

      Comment

      • smnbss

        #4
        Re: Ribbon applications in c#

        thanks a lot
        I have seen this one http://www.codeproject.com/KB/WPF/ribboncontrol.aspx but the graphical layout is a bit crappy

        your one is much better

        smnbss
        "TAB" <anders.berglun d@email.comwrot e in message news:%23s0zyiJR JHA.576@TK2MSFT NGP04.phx.gbl.. .
        Maybe this is what you are looking for




        "smnbss" <smnbss@hotmail .comskrev i meddelandet news:B67BB585-27B0-4D28-9E63-CF71B67CE3AF@mi crosoft.com...
        Is it possible to write a ribbon application from scratch using c#?

        here we can see how to build one using c++ (MFC office style)

        http://msdn.microsoft.com/en-gb/visualc/dd277653.aspx


        Is it possible to do the same in c#??

        Since it's possible to extend Word with c# it should be possible to create a
        ribbon application in C#...

        Or do I need to create an host in c++ and add the controls in c#?

        thanks a lot

        smnbss
        >

        Comment

        Working...