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
I would like to know how to create an custom user interface for a program I am making.
What I want to add besides the default buttons and text boxes is an raster image frame inside of the application and some raster image buttons that change their animation/image.
And also learn how to draw additional items on the screen (buttons, input boxes) after pressing the desired selector button (for input types).
All in all - I would appreciate it if some one pointed me to a tutorial for this or code examples I can learn from.
You have http://www.wpftutorial.net/ to learn how to create WPF interfaces (Windows Presentation Foundation) for Windows / Phone.
Related
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 5 years ago.
Improve this question
What can I use to view all the controls on a form if everything is overlapping each other etc. Don't want to touch it yet, just view, make sure they're there.
You could use the "Document Outline" window (view ==> other windows ==> Document Outline) to see all control inside the form and select them from there.
Try to use Document outline in visual studio.
View - Other Windows - Document outline or ctrl + alt + t. It should show you win form controls structure.
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 5 years ago.
Improve this question
Is it possible to change the style of datetime picker in windows c# application, I want round shape border to my calendar. Required style and current view is provided in Image . Thank you.
Syncfusion DateTimePickerAdv supports creating rounded corner DateTimePicker. Here is an example.
Screenshot
You need Syncfusion Essential Studio to be installed for the sample to work.
The entire product is available in this link.
Note: I work for Syncfusion.
Short answer: No
Long answer: You can't do that 'out of the box' in win forms application, unless you are ready to pull your hair out to write custom controls (Even then you will not achieve what you are expecting, like above image)
Other options would be to use WPF and/or use some 3rd party controls (like Telerik or Syncfusion)
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
I know that this question was asked before but i dont know if its me or this question was not answered properly, maybe because im new to programming... anyways i'm creating this application where i'm suppose to display a WPF window over directX games, the window will display normal data like a list or something. can anyone help me by guiding or even posting the code?
SwapChainBackgroundPanel is a XAML element for developing full-screen, primarily DirectX-focused apps. Unlike SurfaceImageSource and VirtualSurfaceImageSource, SwapChainBackgroundPanel is a XAML element rather than an ImageSource; it inherits from the XAML Grid layout panel and enables apps to create and fully control a full-screen DirectX swap chain, on top of which all other XAML content is overlaid
combining-xaml-and-directx
Introducing-DirectX-to-WPF
wpf-and-directx-game-overlay
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 years ago.
Improve this question
So I've got VS2015 RC and the Windows 10 tools. I was watching the //build day 2 keynote when I saw a really nice UI and hamburger menu which scaled really nicely.
Which controls would I use to implement the hamburger menu? There must be something better than my rectangle and canvas solution.
This part:
Here's an MSDN blog on creating a hamburger menu control:
http://blogs.msdn.com/b/madenwal/archive/2015/03/25/how-to-create-a-hamburger-menu-control-for-windows-8-1-and-windows-phone.aspx
This unfortunately is not an out-of-box control on Windows or Windows Phone and instead requires you to create your own custom built control for this UI paradigm.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
i'm sorry for poor English.
I have a form in my C# Winform Application. This form includes controls such as Label,TextBox...!
how can i hide Form without hide it's controls?!!
For example it use in create User Control such as DateTimePicker,...
how do work hidden and show calendar box in DateTimepicker?!!!!!!!!!!!!!
Well this isn't possible since the form is the root element and making it invisible automatically hides the children inside,
you can cleverly customize the height and width somehow according to your needs.