资源简介
可以通过小程序查看控件ControlTemplate
代码片段和文件信息
using System;
using System.Windows;
using System.Data;
using System.xml;
using System.Configuration;
using System.Reflection;
using System.Windows.Controls;
using System.Collections.Generic;
using System.Diagnostics;
namespace ShowMeTheTemplate {
public partial class App : System.Windows.Application {
public static IEnumerable GetTemplatePartTypes(Assembly assem) {
foreach( Type type in assem.GetTypes() ) {
if( !type.IsPublic ) { continue; }
if( type.GetCustomAttributes(typeof(TemplatePartAttribute) false).Length == 0 ) { continue; }
yield return type;
}
}
protected override void onstartup(StartupEventArgs e) {
base.onstartup(e);
List templatePartTypes = new List(GetTemplatePartTypes(
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 247 2007-01-03 17:24 ShowMeTheTemplate\App.xaml
文件 1327 2007-01-27 21:46 ShowMeTheTemplate\App.xaml.cs
目录 0 2007-04-11 21:35 ShowMeTheTemplate\bin\
目录 0 2007-04-11 21:35 ShowMeTheTemplate\bin\Release\
文件 32768 2007-04-11 21:33 ShowMeTheTemplate\bin\Release\ShowMeTheTemplate.exe
目录 0 2007-01-03 17:24 ShowMeTheTemplate\Properties\
文件 2399 2007-01-03 17:24 ShowMeTheTemplate\Properties\AssemblyInfo.cs
文件 2860 2007-01-03 17:23 ShowMeTheTemplate\Properties\Resources.Designer.cs
文件 5618 2007-01-02 21:22 ShowMeTheTemplate\Properties\Resources.resx
文件 1097 2007-01-03 17:23 ShowMeTheTemplate\Properties\Settings.Designer.cs
文件 203 2007-01-02 21:22 ShowMeTheTemplate\Properties\Settings.settings
文件 4088 2007-01-03 17:24 ShowMeTheTemplate\ShowMeTheTemplate.csproj
文件 4671 2007-04-11 21:33 ShowMeTheTemplate\Window1.xaml
文件 7692 2007-04-11 21:29 ShowMeTheTemplate\Window1.xaml.cs
文件 1487 2007-04-11 21:14 ReadMe.htm
文件 90635 2007-04-11 21:34 ShowMeTheTemplate.png
文件 1174 2007-04-11 20:58 ShowMeTheTemplate.sln
相关资源
- C#winform打印指定区域 -控件拖动 -设置
- wpf实现展开收缩效果(ShrinkSpread)
- C#之WPF重绘动态正弦余弦曲线
- WPF 自定义标题的winform窗体实现源码
- c# WPF串口模拟自动生成数据
- WPF 模拟区域选择
- 仿苹果Safari 自定义控件(tab切换控件
- Treeview控件用法基础
- WPF实现视差效果
- WPF TextBox一个缺陷的修改
- wpf gridsplit 布局
- 盛大点卷充值
- WpfBinding demo
- Html文件上传控件(整理前台使用版)
- WEBBROWER控件使用代理访问指定网页
- wpf textbox Placeholder Demo
- DevExpressUniversalTrial16.2.3
- 屏蔽Flash控件右键菜单,并使用自己设
- vb 具有预览功能的图像查看器用户控
- 具有预览功能的图像查看器用户控件
- 使用Window 自带的控件 axWindowsMediaPla
- 设置控件的相对布局位置不变
- 重绘ListBox控件
- 使用键盘控制窗体或控件的移动
- WPF自动序号(观察者模式)
- 开火车小游戏源码(基于wpf开发的小
- Progressbar进度条控件
- WPF画布实现旋转等待效果
- C# wpf_动态图片加载datagrid
- wpf任务管理器源码
评论
共有 条评论