簡體   English   中英

為什么我的依賴屬性會出現異常?

[英]Why am I getting an exception on my dependency property?

只花了幾個小時試圖了解依賴屬性(在網站上找到很多有價值的信息)。 我已經編寫了我的第一個依賴屬性,但它的行為並不像我希望的那樣。 任何人都可以查看我的代碼,看看他/她是否能發現錯誤? 在嘗試運行應用程序時,我收到了一個TargetInvocationException

  <Window x:Class="TextEditorMVVM.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:c="clr-namespace:TextEditorMVVM.ViewModel"
    Title="MainWindow" Height="660" Width="621" ResizeMode="CanResize" Background="Gray">
<Window.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="pack://application:,,,/Resources/Dictionary1.xaml"/>
        </ResourceDictionary.MergedDictionaries>
        <c:TextEditorViewModel x:Key="TextEditorViewModel"></c:TextEditorViewModel>
    </ResourceDictionary> 
</Window.Resources>
<Border CornerRadius="10" BorderThickness="12" Background="#FF505050">
    <Border.BorderBrush>
        <LinearGradientBrush StartPoint="0,0" EndPoint="0,1">
            <GradientStop Color="LightGray" Offset="1" />
            <GradientStop Color="Gray" Offset="0" />
        </LinearGradientBrush>
    </Border.BorderBrush>
    <StackPanel DataContext="{StaticResource TextEditorViewModel}">
    <Menu Height="auto" Background="Transparent" Foreground="White">
        <MenuItem Width=" auto" Height="auto" Header="_File" VerticalAlignment="Center">
            <MenuItem Header="_New" Command="{Binding CreateNewTabCommand}"></MenuItem>
            <MenuItem Header="_Open" Command="{Binding OpenFileCommand}"></MenuItem>
            <MenuItem Header="_Save" Command="{Binding SaveFileCommand}"></MenuItem>
            <MenuItem Header="_Close" Command="{Binding CloseTabCommand}"></MenuItem>
            <MenuItem Header="_Print" Command="{Binding PrintCommand}"></MenuItem>
            <MenuItem Header="_Exit" Command="{Binding }"></MenuItem>
        </MenuItem>
        <MenuItem Width=" auto" Height="auto" Header="_Edit" VerticalAlignment="Center">
            <MenuItem Header="_Cut" Command="ApplicationCommands.Cut"></MenuItem>
            <MenuItem Header="_Copy" Command="ApplicationCommands.Copy"></MenuItem>
            <MenuItem Header="_Paste" Command="ApplicationCommands.Paste"></MenuItem>
        </MenuItem>
        <MenuItem Width=" auto" Height="auto" Header="_Help" VerticalAlignment="Center">
            <MenuItem Header="_Call Mikael" Command="{Binding }"></MenuItem>
            <MenuItem Header="_Call Semyon" Command="{Binding }"></MenuItem>
            <MenuItem Header="_Cry" Command="{Binding }"></MenuItem>
        </MenuItem>
        <Expander Header="Autosave" VerticalAlignment="Center" Foreground="White">
            <StackPanel Orientation="Horizontal">
                <CheckBox VerticalAlignment="Center" IsChecked="{Binding IsChecked, Mode=TwoWay}"></CheckBox>
                <TextBox Width="40" Height="20" Margin="4" ></TextBox>
                    <Label VerticalAlignment="Center" Foreground="White">seconds</Label>
            </StackPanel>
        </Expander>
    </Menu>
        <c:TransparentTb IsTransparent="False" Text="Why aren't you working????">
        </c:TransparentTb>
    <TabControl x:Name="_tabControl" ItemsSource="{Binding TestTab}" SelectedItem="{Binding SelectedTab}" Background="Transparent" BorderThickness="0">
        <TabControl.ItemContainerStyle>
            <Style TargetType="TabItem">
                <Setter Property="Header" Value="{Binding Title}"/>
                    <Setter Property="Style" Value="Transparent"/>
                    <Setter Property="Content" Value="{Binding InputText}"/>
                </Style>
        </TabControl.ItemContainerStyle>
    </TabControl>
</StackPanel>
</Border>

class TransparentTb : TextBlock
{
    static TransparentTb()
    {

    }


    {
        get { return (bool) GetValue(IsTranparentProperty); }
        set { SetValue(IsTranparentProperty, value); }
    }

    // Using a DependencyProperty as the backing store for IsTranparent.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty IsTranparentProperty =
        DependencyProperty.Register("IsTransparent", typeof (bool), typeof (TransparentTb),
                                    new UIPropertyMetadata(false, TransparentTb.IsTransparentPropertyChanged,
                                                           TransparentTb.IsTransparentCoerce, false)); 


    private static void IsTransparentPropertyChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        TransparentTb inst = (TransparentTb) d;

        if ((bool)e.NewValue == true)
        {
            inst.Background = Brushes.Transparent;
        }
        else inst.Background = Brushes.Black;
    }

    private static object IsTransparentCoerce(DependencyObject d, object value)
    {
        return value;
    }
}

改變這行Xaml ... <Setter Property =“Style”Value =“Transparent”/>

對此......

<!-- <Setter Property="Style" Value="Transparent"/> -->

(即評論出來)

將避免異常。

以您的方式設置樣式將需要引用已在對象樹中定義的內容,如{StaticResource Transparent}。

內部異常是“對象引用未設置...”,這清楚地表明構造函數無法按照編碼的方式找到對“透明”的引用。 請注意,在構造TransparentTb 之后拋出異常。 您可以通過設置斷點來證明這一點。

另外,我檢查了您的TransparentTb代碼,它工作正常。 罪魁禍首是你的TabItem Style Setter。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM