Creating graphics control in WPF and integrate to other winform application
We have a existing applicaiton in winform .net. It has a form which displays a kind of flow chart diagram. Now we want to create a control which has enhanced graphics to display this flow chart. With my limited knowledge on wpf, is it possible -
- Create a graphics control in wpf which is display the flow chart
- Integrate this control to exisiting winform application.
- The diagram should have user interation, like moving blocks in the chart.
- Is w开发者_JAVA百科pf a better solution ?
Thanks.
it is possible to integrate WPF into Winform tutorial here.
With regards to actually creating a flow chart and making it interact with your existing Winform can have its own challenges. Keep in mind that WPF is a very powerful tool so you should consider moving over to WPF if you have the man-power and resources to do so.
Also look into the Model-View-ViewModel design pattern for WPF and you cannot go wrong. Good luck.
精彩评论