0

I am developing an app which has a number of windows. Depending on the workstation conifguration there may be one or more screens which may include a small touch screen.

I would like to change some control styles if a window is on a touch screen. This is especially interesting for buttons which may be too small to hit reliably with a finger tip.

Any ideas how I could do this?

4

1 に答える 1

1

MVVMデザインパターンを調べることができます。UIの表示をデータやコマンドから分離するように設計されています。MVVMの用語では、ボタンの押下などを処理する機能を備えた1つのViewModelと、各画面タイプに1つずつの2つのビューがあります。MVVMフレームワークは、各画面に正しいビューを表示するのに役立ちます。Caliburn.Microを使用して、同様の機能を実現しました。

于 2012-10-15T11:05:23.253 に答える