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 am new to C# and WPF, this is my first application.
I managed to display the content of a csv file in a window and I wish to draw charts of this data (column based on the other ...). My problem is that I can not install the Xceed Wpf Toolkit on my PC (for security reasons). I added the two dlls Xceed.Wpf.DataGrid and Xceed.Wpf.Toolkit as reference in my project and I don't know what to do to draw charts in my WPF application - as I mentioned I'm new to this technology.
Do you have please some explanations to guide me!
Use the Windows.Forms chart control. I've found this very straightforward in the past. Take a look at http://www.codeproject.com/Tips/1006180/Using-Microsoft-Chart-in-WPF.
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 2 years ago.
Improve this question
I was wondering what type of side menu Microsoft used in their Hyper-V Manager (or mmc as well) and wanted to ask you If there is such control in C# (Winform / wpf) and what is the name of it?
I was trying to play with TreeView but it sucked in many ways, e.g. I was not able to "unfocus" selected node and so on.
Hope you are all doing well during this time.
Thank you!
hyper-v manager side menu screenshot
You can either use a 3rd party library having Accordion Control
Ex: https://docs.devexpress.com/WindowsForms/114553/controls-and-libraries/navigation-controls/accordion-control
Or make one for yourselves using WPF/WinForms Custom Control.
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 am using WPF windows application and I want to export data-grid data to Microsoft Word with background colors. Please suggest a way to do it.
I think you will need to use Microsoft.Office.Interop.Word namespace ... this is a walk-through https://msdn.microsoft.com/en-us/library/ee342218.aspx ... I guess you will be making use of the Table interface .
You will need msword at your machine and wherever your application is deployed.
Personally, if i had an option then i would export the data as CSV format and indicate the colour in one of the values.
That said, i don't really know the limitations but this should get you going .. alternatively try to find an open source lib that can help you with this. That is AFAIK there is no out of the box solution by .Net
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 need this type of page in my application is this possible to make this kind of selection list in windows phone. please help me and provide me the right direction to achieve this.
If you're using Silverlight, you need to use a LongListSelector, which already has support for sections (A-Z, or whatever you want).
You can follow Microsoft's tutorial here:
https://msdn.microsoft.com/en-us/library/windows/apps/jj244365(v=vs.105).aspx
However, for the newer Windows Runtime, the class is now ListView. You can see how to use it here: http://www.visuallylocated.com/post/2014/04/28/Migrating-from-the-LongListSelector-to-the-ListView-in-Windows-Phone-XAML-Apps.aspx
Please note that it will be visually different than iOS.
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 3 years ago.
Improve this question
I am trying to make my application use the new style controls but the controls that default into the VS2010 toolbox are not the same. Does anybody know where to get the controls? Are they available to developers or does the painting have to be done with a custom method to replicate the results.
Here are some examples,
This is an image of the tree view I currently have in my application with a solid blue selection style
This is the selection style I wish to replicate,
Thanks for your help.
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've a project where i need to allow users to design their own pages for their application. So i want to create a designer/editor using ASP.NET/C# or silverlight or using anyother MS technologies. The designer should have the following features
Drag and drop controls
Move the controls in the designer to
position it
Preview mode/Source Mode
Property Window for Controls with specific properties
I've not any designer as a hosted application. I basically want to create something similar to visual studio designer as a web app. Any insights on how to approach this?
Silverlight fits perfectly for that.
Drag and Drop is possible too.
So if your user is fine with installing Silverlight it's the best way, in my opinion.
Let me know if you have any questions