Problem Adding Clickable Images In VC++
I am making a Windows Form Application in C++.I have to show 开发者_如何学JAVAsome images on the interface and when the user clicks the image,an even is driven.The problem is that I am unable to find the option to put such even driven images. Please help me out.Thanks
- You cannot make Windows Form Application in C++.
- You can make win32 Application in C++.
- You can make Windows Form Application in Managed C++, C++/CLI, C#. All of these are CLR languages. Managed C++ and C++/CLI are not same as Standard C++.
By the way, if you want to use CLR language, then why don't you just start learning WPF? It's easy, and is much more advanced than Windows Form.
精彩评论