依存関係プロパティをテキスト ボックスに追加し、その依存関係プロパティをブール値プロパティにシルバー ライトでバインドする方法を教えてください。私のブール値のプロパティは私のビューモデルにあります。
ImageSearchIsFocused は、テキスト ボックスにフォーカスを設定できるプロパティです。
<TextBox Text="{Binding ImgSearch, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}">
<i:Interaction.Behaviors>
<common:FocusBehavior HasInitialFocus="True" IsFocused="{Binding ImageSearchIsFocused, Mode=TwoWay}" ></common:FocusBehavior>
</i:Interaction.Behaviors>
</TextBox>
ImageIsFocused プロパティ
bool _ImageSearchIsFocused;
public bool ImageSearchIsFocused
{
get { return _ImageSearchIsFocused; }
set
{
_ImageSearchIsFocused = value;
NotifyPropertyChanged("ImageSearchIsFocused");
}
}