As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I wanna build custom desktop notification for my desktop application. notifyicon seems to be not working may be i can fix that. Can we extend notifyicon class and develop my custom desktop notification control? or do we have any tutorial about the same
The class Notifyicon is sealed, this mean that you can not extend it.
You can create a separate window, that works like notification. But i am not aware about any tutorial for this.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
The file system explorer window in Vista and Windows 7 has a bar at the top of the window where one can type in the address to look at. When you leave the field it turns from being a text edit field to a field with buttons and drop down menus that can be used for navigating.
Are there any existing components like this? How can one go about building this type of component?
Spy++ shows it to be a ToolbarWindow32. So it is just a toolbar but functionality seems to have been added to it.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'd like to use the new metro transitions (AddDeleteThemeTransition, ContentThemeTransition, ...), for my WPF 4 project.
Can I use a dll ? Where could I download it ?
WinRT/XAML is a different technology than WPF and none of its WinRT UI will work with WPF. Additionally these transitions seem to be using some different mechanism than regular Storyboards, so there is likely no way to just extract them to something that would work with WPF.
Your only option would be to implement something yourself and make it look good. Or alternatively give up support for Windows 7 and implement your application as a WinRT app for Windows 8.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
Is there a tool or software to modify the style of C# Forms.
So I have an app/project written in C# and I want to change the style of the forms (if possible on another environment) without causing problems in the code-behind.
Any help is appreciated and thank you in advance.
Try to use Custom Winform Styles or Drawing Custom Borders in Windows Forms form codeplex.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
I want to know what are the most popular Web-Engines to use in a Desktop Aplication using C# and WinForms.
Can you suggest some ?
edit: I've edited the question, I think it's OK now.
I would go with WebKit.NET (GitHub Download)
I would use Awesomium.
It has a good .NET/WPF support.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 11 years ago.
Hey, i'm extending some WPF controls, and need to implement some custom events. I've read around about the 'event' keyword and method groups, but im not sure how to implement this in code. Would anyone be able to provide a simple example of a custom event/handler/etc? Thanks!
For WPF, it's best to create the custom events as Routed events. Here's a tutorial about how to do that at MSDN: http://msdn.microsoft.com/en-us/library/ms752288.aspx. And this is a broader introduction to Routed events: http://msdn.microsoft.com/en-us/library/ms742806.aspx.