WPF中的StaticResource和DynamicResource有什麼區別

FalyEnd發表於2021-12-28

StaticResource 是靜態資源

DynamicResource是動態資源

用一下例子說明

<Window.Resources>
        <Style x:Key="BorderStyle" TargetType="{x:Type Border}">
            <Setter Property="BorderThickness" Value="5" />
            <Style.Triggers>
                <Trigger Property="IsMouseOver" Value="True">
                    <Setter Property="Background" Value="Blue" />
                    <Setter Property="BorderBrush" Value="Red" />
                </Trigger>
                <Trigger Property="IsMouseOver" Value="False">
                    <Setter Property="Background" Value="Red" />
                    <Setter Property="BorderBrush" Value="Blue" />
                </Trigger>
            </Style.Triggers>
        </Style>
        <Style x:Key="TextBlockStyle" TargetType="{x:Type TextBlock}">
            <Setter Property="FontFamily" Value="宋體" />
            <Setter Property="FontSize" Value="18" />
            <Setter Property="Foreground" Value="Red" />
            <Setter Property="FontWeight" Value="Bold" />
        </Style>
    </Window.Resources>
    <Grid>
        <Border
            Width="100"
            Height="100"
            Style="{DynamicResource BorderStyle}" />
        <TextBlock
            HorizontalAlignment="Center"
            VerticalAlignment="Top"
            Style="{StaticResource TextBlockStyle}"
            Text="TEXT1" />
    </Grid>

 

我的理解而言:

 Border的樣式是用動態資源獲取的 ,因為它用到了觸發器,會變化資料,所以需要用DynamicResource來獲取樣式。

TextBlock是用靜態資源獲取,因為它只獲取樣式內容無變化資料。所以用StaticResource來獲取。

TextBlock也可以使用DynamicResource來獲取樣式 但是它會多次呼叫,會佔許些資源,當量大的時候會讓程式變慢,所以要合理使用。

Border如果使用StaticResource來獲取樣式,將會收到錯誤提示:“StaticResource reference 'BorderStyle' was not found.” 原因是StaticResource 查詢行為不支援向後引用,即不能引用在引用點之後才定義的資源。而DynamicResource可以向後引用,即DynamicResource執行時才查詢並載入所定義的資源。

網上有各個大佬精細的說明,我就簡單總結下:

StaticResources時

要在資源第一次引用之後無需再修改資源的值。

DynamicResource時

資源的值依賴一些條件,而該條件直到執行時才能確定。

限制條件:屬性必須是依賴屬性,或是Freezable的。

詳細的可參考大佬這編文章:(18條訊息) WPF教程(五)資源(StaticResource 靜態資源、DynamicResource 動態資源)_魚骨頭科技-CSDN部落格_wpf 動態資源

相關文章