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.
データグリッドのセルのコンテンツ内にアニメーション化されたプログレス バーを表示し、テキストを前景に表示するにはどうすればよいですか。
たとえば、「アップロード中...」を表示し、その背後で進行状況をアニメーション化したいとします。
TextBlock と ProgressBar の両方をグリッド内に配置して、TextBlock が進行状況バーの上に表示されるようにしましたか。
そのようです:
<Grid> <ProgressBar /> <TextBlock Text="Uploading..." /> </Grid>