preguntar acerca de stackpanel
7
réponses
Comment puis-je faire en sorte que les éléments disposés dans un empattement horizontal partagent une base de référence commune pour leur contenu textuel?
voici un exemple trivial du problème que j'ai:
<StackPanel Orientation="Horizontal">
<Label>Foo</Label>
<TextBox>Bar</TextBox>
<ComboBox>
<TextBlock>Baz</TextBlock>
<Text …
demandé sur
1970-01-01 00:33:29
2
réponses
Définir une bordure autour d’un StackPanel.
Voici mon code XAML:
<Window x:Class="CarFinder.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Search for cars in TuMomo" Height= …
demandé sur
1970-01-01 00:33:30
10
réponses
Comment espacer les éléments enfant d’un StackPanel?
un StackPanel:
<StackPanel>
<TextBox Height="30">Apple</TextBox>
<TextBox Height="80">Banana</TextBox>
<TextBox Height="120">Cherry</TextBox>
</StackPanel>
Quelle est la meilleure f …
demandé sur
1970-01-01 00:33:29