zoukankan      html  css  js  c++  java
  • WPF样式引用

    为了提高样式的重用性,统一配置管理。web将样式写成通用的css,然后在页面中调用css。同样,wpf同样有这样的机制。其中有一个全局控制的地方,那就是在app.xaml中引用样式。 方法如下:

    <Application x:Class="WpfStudy.App"
                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                 
                 StartupUri="MainWindow.xaml">
        <Application.Resources>
            <Style x:Key="Style" Resources="SimpleStyle.xaml"></Style>
        </Application.Resources>
    </Application>
    

      其中,Style必须给key赋值,否则会报如下错误:

         Error 1 All objects added to an IDictionary must have a Key attribute or some other type of key associated with them. Line 8 Position 14. E:T程序own-源代码BIZBiz_WPFMISMISApp.xaml 8 14 MIS

  • 相关阅读:
    UIScrollView(滚动视图)
    NSJSONSerialization(json序列化)
    手势(UIGestureRecognizer)
    mac常用命令
    ios设备相关
    UITextField
    cocos2d学习笔记
    NSTimer(定时器)
    git命令
    Java 线程的终止-interrupt
  • 原文地址:https://www.cnblogs.com/crazylight/p/4157594.html
Copyright © 2011-2022 走看看