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.
如何GridView在 WPF中设置方向RightToLeft:
GridView
RightToLeft
<DataGrid x:Name="gvMembers" HorizontalAlignment="Left" Margin="10,139,0,0" VerticalAlignment="Top" Height="297" Width="580"/>
默认情况下从左到右。
放FlowDirection="RightToLeft"
FlowDirection="RightToLeft"
使用这个 dgvActivity.FlowDirection = FlowDirection.RightToLeft;
dgvActivity 是 datagrideview 的名称
Java网页上的标签?