c# zindex problem when using wpf and winform mixed - c#

wpf_winform:
I am programming based on wpf and working to display winform window using winform host.
But I want to display the wpf control on top of the winform, but it doesn't show with zindex.
In case of Winform, shape file world map is displayed as EGIS.controls.SFMap.
I want to display the controls of wpf on the winform screen drawn through system.drawing.
Help... plz

Related

How to display all the information of a tooltip on Windows Forms using Livecharts and C#

I am displaying data with a cartesian chart (in scatter plot) using LiveCharts in Windows Forms.
I need to modify the tool tip so that, when I am hovering over a point it displays all its data in a window. For now, when the cursor points at a point, only the 2 parameters of the used axes are displayed. I have around 10 parameters to display to the user.
The goals are:
know which point is being pointed at by the tip (= cursor),
access the data of this point,
show this data in a small box near the tooltip (= cursor)
My research led me to the following webpage:
https://lvcharts.net/App/examples/v1/WinForms/Tooltips%20and%20Legends#customizing-defaults,
but on the page the Windows Form example is for Wpf.
It looks .xaml files from the link can't be used in Windows Form, as they do actually inherited from .xml (Windows Forms) and are specific to Wpf, so I can't use .xaml in Windows Form.
Can, please, any one help me to find a solution?
PS: I don't know if it is usefull information, I am using Windows Forms with Visual Studio in C#.

How to drag from wpf treeview and drop on winform control?

I am using EasyGis.net shape file and my application is a wpf . I am using a treeview in wpf and shapefile which is a winform control.
I want to know that how can i do drag an item from treeview and drop on the winform shapefile control?
You can create an invisible border around the winform control to get the drop functionality and then if the winform control has methods to add and show the markers use those methods

Blur a button in windows forms

Can I blur a button in C# using windows forms?
I know it is possible using WPF, but I am using winforms for my current project.
If not, there's any way to put a WPF button in a winforms Form?

Attach winform scrollbar to textbox

Just started develop an application in c# using winforms metro ui and I can't figure out how to use a metroscrollbar with a metro textbox. If i go under properties when selecting the textbox i can choose scrollbar but it shows the normal Windows form..
Please see the picture down below:
How can I use the Metro scrollbar instead of the normal scrollbar?

How to embed a ListView in a winform DataGridView control

We have a WinForm application developed in C# VS 2010 .Net Frame work 3.5. On a window Form we want to display data in a nested DataGridView as given in the figure below. Further it would be nice if we can have expand and collapse features as well.

Categories