我想根据特定条件更改弹出窗口中按钮的颜色,我想根据这些条件设置一些文本。我需要在后面的代码中执行此操作。
我在StackPanel中有一个带有几个TextBlock的弹出窗口。前3个绑定到课程的详细信息(这是一个调度应用程序;学校项目)。除非有关于该课程的冲突,否则我想要的最后一个是空的。也就是说,我想动态地决定每次打开弹出窗口时TextBlock中有什么内容。
<Popup Name="CourseListDetail" Width="Auto" Height="Auto">
<StackPanel>
<TextBlock Margin="10,10,10,0">
<TextBlock.Text>
<MultiBinding StringFormat="{}{0}: {1}">
<Binding Path="CourseCode"/>
<Binding Path="LongTitle"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
<TextBlock Margin="10,0,10,0">
<TextBlock.Text>
<MultiBinding StringFormat="{}{0} - {1}/{2}">
<Binding Path="ProfessorsString"/>
<Binding Path="Enrollment"/>
<Binding Path="Capacity"/>
</MultiBinding>
</TextBlock.Text>
</TextBlock>
<TextBlock Margin="10,0,10,0" Grid.Row="2" Grid.Column="1" Text="{Binding MeetingsString}" TextWrapping="Wrap"
HorizontalAlignment="Center"/>
<TextBlock TextWrapping="WrapWithOverflow" MaxWidth="300" Text="{Binding Description}" Margin="10,10,10,10"/>
<TextBlock Name="ConflictText" Foreground="Red" HorizontalAlignment="Center" Text="{Binding ConflictString}"/>
<Button Name="Detail_AddCourse" Content="Add To Schedule" Margin="10,10,10,10" Padding="5" Background="LightGreen"
Click="AddCourseButton_Click"
Style="{StaticResource MyButtonStyle}"/>
</StackPanel>
</Border>
</Popup>
我有一个函数,当你点击一个课程时打开弹出窗口,弹出关于课程的DataContext,但是我不知道如何通过函数访问TextBlock或它下面的按钮。我认为有一个儿童财产或其他东西,所以我可以拨打按钮,如:
CourseListDetail.Detail_AddCourse.Background = "Red";
或
CourseListDetail.Child.Button().Background = "Red";
等
代码隐藏功能:
private void CourseListItem_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
ListViewItem selection = sender as ListViewItem;
Course course = selection.DataContext as Course;
CourseListDetail.DataContext = course;
CourseListDetail.PlacementTarget = selection;
CourseListDetail.IsOpen = true;
CourseListDetail.Focus();
hasConflict conflictType = _schedule.HasConflict(course);
if (conflictType != hasConflict.NO_CONFLICT) { //If there is a conflict
//Change button color to red here
if (conflictType == hasConflict.COURSE_FULL) { //If the course is full
//Set TextBlock text to conflict message here
}
}
else { //No conflict
//Set button color to green
}
}
hasConflict只是一个枚举
答案 0 :(得分:0)
使用x:名称而不是名称。然后,您将能够访问后面代码中的元素。有关说明,请参阅In WPF, what are the differences between the x:Name and Name attributes?。