Telerik コントロールを使用して Windows フォーム プロジェクトを開発しました。何らかの理由で、Syncfusion コントロールに切り替える必要があります。新しいコントロールに切り替える最善の方法は何ですか? すべてのものをもう一度ドラッグ アンド ドロップする必要がありますか..?? または、時間がかからない他のオプションがありますか。
2 に答える
It's very time consuming. It's not only a matter to change the controls. Probably they are totally different in terms of events, costants and worse in terms of functionality. You will need to test all of your code and probably rewrite the UI interaction methods.
If you really need to do that, take your time, and use a version control system to create a branch for the new version while maintaining support for the old version still using the Telerik controls
You could just change the references in your *.Designer.cs
files, but you'll probably run into errors when the Designer file attempts to assign properties that have existed in the Telerik controls and don't exist in the Syncfusion ones.
This approach will probably be less work than remaking every form, but it'll still take some time.