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.
私は 2 つのテキストブロックを持っており、それらはページ上で互いの後にあります - 名前と姓。これにデータをバインドしているので、サイズはそれらの長さに依存します。可変サイズで作業するための最良の方法は何ですか?
<StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding FirstName}" Margin="0,0,5,0" /> <TextBlock Text="{Binding LastName}" /> </StackPanel>