我正在使用SL4商业应用程序,利用世界家庭联合会的RIA服务。 在我看来,在标识符一的设计器中有一个标识,可以找到用户名文本箱和密码文本箱。 但是,在Xaml页中,它像下文所述法典一样。
<local:BusyIndicator x:Name="busyIndicator" BusyContent="{Binding Path=Strings.BusyIndicatorLoggingIn, Source={StaticResource ApplicationResources}}"
IsBusy="{Binding IsLoggingIn}">
<StackPanel Orientation="Vertical">
<toolkit:DataForm x:Name="loginForm"
Padding="10,0,10,0"
CurrentItem="{Binding}"
IsEnabled="{Binding IsLoggingIn, Converter={StaticResource NotOperatorValueConverter}}"
AutoEdit="True" CommandButtonsVisibility="None" HeaderVisibility="Collapsed"
AutoGeneratingField="LoginForm_AutoGeneratingField"
Style="{StaticResource LoginDataFormStyle}" />
</StackPanel>
</local:BusyIndicator>
我的问题是,我需要把数据格式中的用户名文本框和密码文本箱打上风格。 我如何能够这样做? 从哪里可以做到这些控制?