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.
如何在数据网格的单元格内容中显示动画进度条,并在前台显示文本。
例如,我想显示“Uploading...”并在其后面设置动画进度。
您是否尝试过将 TextBlock 和 ProgressBar 都放在网格中,以便 TextBlock 出现在进度条上方。
像这样:
<Grid> <ProgressBar /> <TextBlock Text="Uploading..." /> </Grid>