私はUserControl
をc#wpfで作成しました。画像の下usercontrolの中のすべてのプロパティを取得する方法TextBox
C#のコードのように私は、テキストボックスのすべてのプロパティを取得したい(txtCode)プロパティボックス
<UserControl x:Class="WpfApplication2.UserControl1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d" Height="315.358" Width="758">
<Grid >
<TextBox x:Name="txtCode" HorizontalAlignment="Left" Height="97" Margin="134,62,0,0" TextWrapping="Wrap" Text="00001" VerticalAlignment="Top" Width="588" FontSize="30"/>
<Label Content="Code" HorizontalAlignment="Left" Margin="27,72,0,0" VerticalAlignment="Top" Width="138" Height="97" FontSize="30"/>
<Button Content="Submit" HorizontalAlignment="Left" Margin="290,186,0,0" VerticalAlignment="Top" Width="247" Height="48" FontSize="30"/>
</Grid>
</UserControl>
何か
public TextBox txtCodeProperties
{
get { return txtCode; }
set { txtCode = value; }
}
可能な重複(http://stackoverflow.com/questions/9986698 /ユーザーコントロールの要素にアクセスする) – Sinatr
「コントロールのプロパティ」を表示したい場合は、**フォーカスされたコントロール**で 'F4'または' Alt + Enter'を押すだけです。 – StepUp