绑定在移动到浮出控件时失败



>我有一个滑块绑定到MediaElement的音量属性。如果按如下方式标记,则此方法有效:

<UserControl
    x:Class="GenTest.VideoElement"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:GenTest"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300"
    d:DesignWidth="600">
    <UserControl.Resources>
        <Style x:Name="transportStyle"  TargetType="Button">
            <Setter Property="Height" Value="40" />
            <Setter Property="Width" Value="75" />
            <Setter Property="FontSize" Value="11" />
        </Style>
        <Style x:Name="atransportStyle"  TargetType="AppBarButton">
            <Setter Property="IsCompact" Value="true" />
            <Setter Property="FontSize" Value="11" />
        </Style>
    </UserControl.Resources>
    <Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
        <Grid.RowDefinitions>
            <RowDefinition Height="*"/>
            <RowDefinition Height="100"/>
        </Grid.RowDefinitions>
        <ContentControl x:Name="videoContainer" 
                            KeyUp="VideoContainer_KeyUp" 
                            HorizontalContentAlignment="Center" 
                            VerticalContentAlignment="Center" 
                            Height="400" Grid.Row="0" >
            <MediaElement Name="videoMediaElement"
                              MediaOpened="videoElement_MediaOpened" 
                              MediaEnded="videoMediaElement_MediaEnded" 
                              MediaFailed="videoMediaElement_MediaFailed"
                              CurrentStateChanged="videoMediaElement_CurrentStateChanged"
                              AutoPlay="False" />
        </ContentControl>
        <!-- Transport Controls -->
        <StackPanel Name="TransportControlsPanel" 
                    HorizontalAlignment="Center" 
                    Grid.Row="1" >
            <Slider Name="timelineSlider" Margin="0,0" Width="500" Height="37"/>
            <StackPanel Orientation="Horizontal">
                <AppBarButton x:Name="btnPlay" Icon="Play" Click="btnPlay_Click" Style="{StaticResource atransportStyle}" Label="Play"/>
                <AppBarButton x:Name="btnStop" Icon="Stop" Click="btnStop_Click" Style="{StaticResource atransportStyle}"/>
                <AppBarButton x:Name="btnReverse" Icon="Previous" Click="btnReverse_Click" Style="{StaticResource atransportStyle}"/>
                <AppBarButton x:Name="btnForward" Icon="Next" Click="btnForward_Click" Style="{StaticResource atransportStyle}"/>

                 <Button Name="btnFullScreenToggle" Click="btnFullScreenToggle_Click" 
                        Style="{StaticResource transportStyle}" Content="Full" />
                <ComboBox Name="cbAudioTracks"
                          SelectionChanged="cbAudioTracks_SelectionChanged" 
                          Width="75" />
                <AppBarButton x:Name="btnTest" Icon="Other" Style="{StaticResource atransportStyle}">
                    <AppBarButton.Flyout>
                        <Flyout>
                            <StackPanel Orientation="Vertical">
                            </StackPanel>
                        </Flyout>
                    </AppBarButton.Flyout>
                </AppBarButton>
                <Slider Minimum="0" Maximum="1"  StepFrequency="0.1" Height="100" Value="{Binding Mode=TwoWay, 
                    ElementName=videoMediaElement, Path=Volume}" Orientation="Vertical"/>
             </StackPanel>
        </StackPanel>
    </Grid>
</UserControl>

但是,当我将滑块放入浮出控件时,绑定不再起作用。

<AppBarButton x:Name="btnTest" Icon="Other" Style="{StaticResource atransportStyle}">
                    <AppBarButton.Flyout>
                        <Flyout>
                            <StackPanel Orientation="Vertical">
                                <Slider Minimum="0" Maximum="1"  StepFrequency="0.1" Height="100" Value="{Binding Mode=TwoWay, 
                    ElementName=videoMediaElement, Path=Volume}" Orientation="Vertical"/>
                            </StackPanel>
                        </Flyout>
                    </AppBarButton.Flyout>
                </AppBarButton>

没有错误,我无法执行绑定跟踪,因为跟踪侦听器已从 WinR 中删除。我试过:

public App()
{
    this.InitializeComponent();
    this.Suspending += OnSuspending;
    this.UnhandledException += App_UnhandledException;
    DebugSettings.BindingFailed += OnDebugSettingsOnBindingFailed;
}
private void OnDebugSettingsOnBindingFailed(object sender, BindingFailedEventArgs args)
{
    new MessageDialog(args.Message).ShowAsync();
}

但是不会引发任何错误,并且输出窗口中没有任何内容。在设计模式下,使用属性窗口,如果我更改 videoMediaElement 的音量值,则滑块的 Value 属性会更改,但我无法更新滑块的值,它是只读的。

如果我使用代码,我可以使其在浮出控件中工作:

private void RangeBase_OnValueChanged(object sender, RangeBaseValueChangedEventArgs e)
    {
        var slider = sender as Slider;
        videoMediaElement.Volume = slider.Value; 
    }

但是,为什么要为绑定而烦恼呢?

我现在有几次出现这种错误,我认为浮出控件是单独处理的,绑定无法查找元素名称。

我建议你应该使用ViewModel来执行此操作,而不是在你的页面中交叉绑定

滑块.值 [双向绑定] -> 视图模型.体积

ViewModel.Volume -> videoMediaElement.Volume

最新更新