Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WPFコントロールの複数の子コントロールを更新する必要があります。すべての子コントロールを更新するまで、コントロールを再描画したくありません。
UIスレッドでこれらすべての更新を行う場合(通常はそうです)、WPFフレームワークは希望どおりに実行します。
テストするには、コントロールと子コントロールを継続的に更新する無限ループを作成します。その結果、UIがフリーズします。
I have an <object> with an id of 'objectID'.
<object>
id
I can modify its position with .css:
.css
$('#objectID').css({'top': "+=200px"});
Bu