다른 텍스트 상자의 입력을 기반으로 텍스트 상자의 배경을 변경하려고합니다. 예를 들어 "프로세스"를 한 텍스트 상자에 입력 할 때 다른 텍스트 상자의 배경 녹색으로 바뀌어야합니다. xmal 코드는다른 텍스트 상자의 입력을 기반으로 텍스트 상자의 배경을 변경하려는 경우
<Window
x:Name="mywindow"
x:Class="labelsetboxreadbox.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:labelsetboxreadbox"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="525">
<Window.Resources>
<local:StaffNameToBackgroundColourConverter x:Key="converter1"/>
</Window.Resources>
<Grid>
<Label Name="label" Width="150" Height="50" Margin="15,94,352,175" Background="Black"/>
<TextBox Name="setbox" Width="150" Height="50" Margin="167,95,200,174" Background="{Binding ElementName=mywindow,UpdateSourceTrigger=PropertyChanged,Converter={StaticResource converter1}}" />
<TextBox Name="readbox" Width="150" Height="50" IsReadOnly="True" Margin="318,95,49,174" Background="Aqua"/>
<TextBox Name="statusbar" Width="150" Height="50" VerticalAlignment="Bottom" HorizontalAlignment="Right" TextChanged="statusbar_TextChanged"/>
</Grid>
</Window>
처럼 환영합니다. 변환기의 코드를 공유하십시오. –