How to create Office UI in win form Using C# [closed] - c#

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I google a lot for a long time. I have no idea how to create OfficeUI in C# Win Form. Less article teach this.
I found this video. But it is presentation of the OfficeUI only. Actually, I really want to develop a Win Form like this.
https://www.youtube.com/watch?v=dCTmWjN3WkA
any idea?
many thanks.

I assume you mean you want to add an Office Ribbon Bar to a WinForms application ? If you google ".net WinForms RibbonBar" you will find a bunch of examples; for instance this CodeProject one; http://www.codeproject.com/Articles/364272/Easily-Add-a-Ribbon-into-a-WinForms-Application-Cs

Related

How do i put a Windows Form link to download my form onto a HTML webpage [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I was just wondering how I would put a download link of my windows form onto a webpage(I made in Visual Studio). I dont understand how I cant display it in a webpage in the first place, can someone explain?
Thanks
Using windows forms inside the bowser is not possible, the browser will not understand it, few years ago Silverlight was a promising solution which was not html based but can use some of your desktop skills, but it is not there anymore.
Currently there is a promising project https://blazor.net/ which is:
Build a Web UI with C# Blazor is an experimental .NET web framework
using C# and HTML that runs in the browser.

How to show a WPF Window in front of a UWP app in fullscreen mode? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I'm looking for a way to make a WPF window stay on top of a fullscreen UWP app. I found numerous mentions of Window.Topmost, but it only works with a windowed app.
For a little bit of context, the idea is to create a virtual keyboard that I could launch from the app (with a brokered runtime component). I do know that there are some keyboard implementations, but they don't do the trick since they basically edit the textboxes themselves (and I need it to be able to also interact with WebViews).
Thanks :)

xamarin Android Developing basic concept [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I need some basic help about xamarin basic's.
can anyone guide me about Xamarin basic concept like selecting layout ,like resize button etc..
I would suggest doing an intro tutorial from a well known blog or even Youtube to get the gist of how to develop an Xamarin application. There you should be able to pick up the basic concepts. Tutsplus has an excellent 3 part tutorial which I found very helpful link

New button on top corner of any Windows App C# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 7 years ago.
Improve this question
Somebody know how to add a button on top right corner of any windows app loaded?, and manage a controller to interacting with them.
Really what I want is a method to set the property "Always on top" of any form.
I appreciate any help to do this posible... :)
(my programing language is c#)
It is possible to do so but prepare yourself to get dirty. Really dirty.
See this CodeProject article: Add Your Control On Top Another Application. Basically that guy is drawing a kind of custom control into another app's title bar.
In addition to this, this article about global system hooks might get handy for you as well.

displaying images and playing sound in C# [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am learning C# and I want to create a countdown timer application that displays the time in a digital format on an image of a stopwatch and gives verbal time updates at certain times.
How do I go about displaying images to the screen and playing sound? I have used pygame in python to achieve this so basically I am looking for suggestions for something similar in C#.
I hope this makes sense! Thanks.
The best technology to use for that would probably be Windows Presentation Foundation (WPF).
Here's an example of an application made in WPF similar to what you want to do:
http://www.codeproject.com/Articles/20048/Immerse-Yourself-in-WPF-A-quot-World-Clocks-quot-A

Categories