解读WPF中的Xaml

1.Overview

这篇文章主要分享从源代码角度解读wpf中xaml。由于源码查看起来错综复杂“随便找一个对象按下F12就是一个新的世界”,看源码的感觉就是在盗梦空间里来回穿梭;所以也是耗费很长的时间去阅读源码然后根据自己的理解编写文章和贴出部分关键源码。

2.Detail

大概将从编译、读取、加载这几个维度来解读。以防后面看源码会晕,先直接讲结果;

  • 编写(可通过vs完成)

be384c195876ffe76691c9e6fbda9eeb.png

  • 编译(可通过vs完成)

fdb9960a385e472016184eb7232bf0d7.png

  • 读取、加载

d3169573049b6e28a47e4c08de68cdbb.png

有的帅气的观众就会问了,这些研究在实际在项目中应用场景是什么?

         选择性的加载xaml(baml)文件来达到更改UI的操作。

  • 动态换肤,大家都用过手机app每到过年过节都会看到界面上会出现对应的主题,那么我们就可以在程序内设定到了某个节日直接加载对应主题界面的xaml(baml)文件来达到这种效果,对于动态皮肤场景来说,在运行时加载和解析XAML是有意义的。

  • 加载不同的.xaml(.baml)文件,以适应不同分辨率的布局

  • 简单固定的UI美工人员将设计稿转换为位图,可使用blend或者 expression design转成对应的wpf界面

还可以适配不同的业务要求。可能这种延伸就是研究的意义吧

(1)编译xaml

XAML不仅要能够解决涉及协作问题,它还需要快速运行。尽管基于XML格式可以很灵活并且很容易地迁移到其他平台和工具,但未必是有效的选择。XML的涉及目标是具有逻辑性、易读而且简单,没有被压缩。WPF 使用 BAML(Binaiy Application Markup Language,二进制应用程序标记语言)来克服这 个缺点。BAML 并非新事物,它实际上就是 XAML 的二进制表示,当在 Visual Studio 中编译 WPF 应用程序时,所有 XAML 文件都被转换为 BAML这些 BAML 然后作为资源被嵌入到最 终的 DLL 或 EXE 程序集中。BAML 是标记化的,这意味着较长的 XAML 被较短的标记替代。BAML 不仅明显小一些,还对其进行了优化,从而使它在运行时能够更快地解析。并成为一个内嵌资源;

BAML由VS编译生成存在,obj目录的debug下;

078901417888af64b594cca51fc62f1a.png

通过IL反编译项目文件之后,可以看到编译完成之后将会被连接到工程的“资源清单”当中。

4378489172def12e40479a54fedf3623.png

使用Assembly的GetManifestResourceStream方法,可以在运行期获取到这个二进制流

Assembly asm = Assembly.GetExecutingAssembly( );
Stream s = asm.GetManifestResourceStream("StreamName");

(2)读取、加载xaml(baml)

使用代码和未经编译的标记(XAML),这种具体方式对于某些特殊情况是很苻意义的* 例如创建高度动态化的用户界面。这种方式在运行时使用 System.Windows.Markup 名 称空间中的 从 XAML 文件中加载部分用户界面。使用代码和编译过的标记(BAML),对于 WPF 而言这是一种更好的方式,也是 Visual Studio 支持的一种方式。这种方式为每个窗口创建一个 XAML 橫板,这个 XAML 模板 被编译为 BAML,并嵌入到最终的程序集中。编译过的 BAML 在运行时被提取出来, 用于重新生成用户界面。

  • 1.当客户端程序被启动时Runtime接管代码来创建window实例

internal object CreateInstanceImpl(BindingFlags bindingAttr,Binder binder,object[] args,CultureInfo culture,object[] activationAttributes,ref StackCrawlMark stackMark){this.CreateInstanceCheckThis();object obj = (object) null;try{try{if (activationAttributes != null)ActivationServices.PushActivationAttributes((Type) this, activationAttributes);if (args == null)args = EmptyArray<object>.Value;int length = args.Length;if (binder == null)binder = Type.DefaultBinder;if (length == 0 && (bindingAttr & BindingFlags.Public) != BindingFlags.Default && (bindingAttr & BindingFlags.Instance) != BindingFlags.Default && (this.IsGenericCOMObjectImpl() || this.IsValueType)){obj = this.CreateInstanceDefaultCtor((bindingAttr & BindingFlags.NonPublic) == BindingFlags.Default, false, true, ref stackMark);}else{ConstructorInfo[] constructors = this.GetConstructors(bindingAttr);List<MethodBase> methodBaseList = new List<MethodBase>(constructors.Length);Type[] argumentTypes = new Type[length];for (int index = 0; index < length; ++index){if (args[index] != null)argumentTypes[index] = args[index].GetType();}for (int index = 0; index < constructors.Length; ++index){if (RuntimeType.FilterApplyConstructorInfo((RuntimeConstructorInfo) constructors[index], bindingAttr, CallingConventions.Any, argumentTypes))methodBaseList.Add((MethodBase) constructors[index]);}MethodBase[] methodBaseArray = new MethodBase[methodBaseList.Count];methodBaseList.CopyTo(methodBaseArray);if (methodBaseArray != null && methodBaseArray.Length == 0)methodBaseArray = (MethodBase[]) null;if (methodBaseArray == null){if (activationAttributes != null){ActivationServices.PopActivationAttributes((Type) this);activationAttributes = (object[]) null;}throw new MissingMethodException(Environment.GetResourceString("MissingConstructor_Name", (object) this.FullName));}object state = (object) null;MethodBase methodBase;try{methodBase = binder.BindToMethod(bindingAttr, methodBaseArray, ref args, (ParameterModifier[]) null, culture, (string[]) null, out state);}catch (MissingMethodException ex){methodBase = (MethodBase) null;}if (methodBase == (MethodBase) null){if (activationAttributes != null){ActivationServices.PopActivationAttributes((Type) this);activationAttributes = (object[]) null;}throw new MissingMethodException(Environment.GetResourceString("MissingConstructor_Name", (object) this.FullName));}if (RuntimeType.DelegateType.IsAssignableFrom(methodBase.DeclaringType))new SecurityPermission(SecurityPermissionFlag.UnmanagedCode).Demand();if (methodBase.GetParametersNoCopy().Length == 0){if (args.Length != 0)throw new NotSupportedException(string.Format((IFormatProvider) CultureInfo.CurrentCulture, Environment.GetResourceString("NotSupported_CallToVarArg")));obj = Activator.CreateInstance((Type) this, true);}else{obj = ((ConstructorInfo) methodBase).Invoke(bindingAttr, binder, args, culture);if (state != null)binder.ReorderArgumentArray(ref args, state);}}}finally{if (activationAttributes != null){ActivationServices.PopActivationAttributes((Type) this);activationAttributes = (object[]) null;}}}catch (Exception ex){throw;}return obj;}
  • 2.Window构造函数调用Application.LoadComponent读取创建.xaml(baml)

3220a15fc00ddedd9918cd0c99c4e01a.png

IL反编译后的代码

/// <summary>
/// MainWindow
/// </summary>
public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {#line 10 "..\..\..\MainWindow.xaml"[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]internal System.Windows.Controls.TextBox textBox;#line default#line hiddenprivate bool _contentLoaded;/// <summary>/// InitializeComponent/// </summary>[System.Diagnostics.DebuggerNonUserCodeAttribute()][System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.0.0")]public void InitializeComponent() {if (_contentLoaded) {return;}_contentLoaded = true;System.Uri resourceLocater = new System.Uri("/WpfApp1;component/mainwindow.xaml", System.UriKind.Relative);#line 1 "..\..\..\MainWindow.xaml"System.Windows.Application.LoadComponent(this, resourceLocater);#line default#line hidden}[System.Diagnostics.DebuggerNonUserCodeAttribute()][System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "6.0.0.0")][System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)][System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")][System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")][System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {switch (connectionId){case 1:this.textBox = ((System.Windows.Controls.TextBox)(target));return;}this._contentLoaded = true;}
}
  • 3.Application.LoadComponent()加载baml

public static void LoadComponent(object component, Uri resourceLocator)
{if (component == null)throw new ArgumentNullException(nameof (component));if (resourceLocator == (Uri) null)throw new ArgumentNullException(nameof (resourceLocator));if (resourceLocator.OriginalString == null)throw new ArgumentException(SR.Get("ArgumentPropertyMustNotBeNull", (object) nameof (resourceLocator), (object) "OriginalString"));Uri curComponentUri = !resourceLocator.IsAbsoluteUri ? new Uri(BaseUriHelper.PackAppBaseUri, resourceLocator) : throw new ArgumentException(SR.Get("AbsoluteUriNotAllowed"));ParserContext parserContext = new ParserContext();parserContext.BaseUri = curComponentUri;Stream stream;bool closeStream;if (Application.IsComponentBeingLoadedFromOuterLoadBaml(curComponentUri)){NestedBamlLoadInfo nestedBamlLoadInfo = Application.s_NestedBamlLoadInfo.Peek();stream = nestedBamlLoadInfo.BamlStream;stream.Seek(0L, SeekOrigin.Begin);parserContext.SkipJournaledProperties = nestedBamlLoadInfo.SkipJournaledProperties;nestedBamlLoadInfo.BamlUri = (Uri) null;closeStream = false;}else{PackagePart resourceOrContentPart = Application.GetResourceOrContentPart(resourceLocator);ContentType contentType = new ContentType(resourceOrContentPart.ContentType);stream = resourceOrContentPart.GetStream();closeStream = true;if (!MimeTypeMapper.BamlMime.AreTypeAndSubTypeEqual(contentType))throw new Exception(SR.Get("ContentTypeNotSupported", (object) contentType));}if (!(stream is IStreamInfo streamInfo) || streamInfo.Assembly != component.GetType().Assembly)throw new Exception(SR.Get("UriNotMatchWithRootType", (object) component.GetType(), (object) resourceLocator));XamlReader.LoadBaml(stream, parserContext, component, closeStream);
}

      XamlReader.LoadBaml细节代码

internal static object LoadBaml(Stream stream,ParserContext parserContext,object parent,bool closeStream)
{object p1 = (object) null;EventTrace.EasyTraceEvent(EventTrace.Keyword.KeywordPerf | EventTrace.Keyword.KeywordXamlBaml, EventTrace.Event.WClientParseBamlBegin, (object) parserContext.BaseUri);if (TraceMarkup.IsEnabled)TraceMarkup.Trace(TraceEventType.Start, TraceMarkup.Load);try{if (stream is IStreamInfo streamInfo2)parserContext.StreamCreatedAssembly = streamInfo2.Assembly;Baml2006ReaderSettings bamlReaderSettings = XamlReader.CreateBamlReaderSettings();bamlReaderSettings.BaseUri = parserContext.BaseUri;bamlReaderSettings.LocalAssembly = streamInfo2.Assembly;if (bamlReaderSettings.BaseUri == (Uri) null || string.IsNullOrEmpty(bamlReaderSettings.BaseUri.ToString()))bamlReaderSettings.BaseUri = BaseUriHelper.PackAppBaseUri;Baml2006ReaderInternal baml2006ReaderInternal = new Baml2006ReaderInternal(stream, new Baml2006SchemaContext(bamlReaderSettings.LocalAssembly), bamlReaderSettings, parent);Type type = (Type) null;if (streamInfo2.Assembly != (Assembly) null){try{type = XamlTypeMapper.GetInternalTypeHelperTypeFromAssembly(parserContext);}catch (Exception ex){if (CriticalExceptions.IsCriticalException(ex))throw;}}if (type != (Type) null){XamlAccessLevel xamlAccessLevel = XamlAccessLevel.AssemblyAccessTo(streamInfo2.Assembly);new XamlLoadPermission(xamlAccessLevel).Assert();try{p1 = WpfXamlLoader.LoadBaml((System.Xaml.XamlReader) baml2006ReaderInternal, parserContext.SkipJournaledProperties, parent, xamlAccessLevel, parserContext.BaseUri);}finally{CodeAccessPermission.RevertAssert();}}elsep1 = WpfXamlLoader.LoadBaml((System.Xaml.XamlReader) baml2006ReaderInternal, parserContext.SkipJournaledProperties, parent, (XamlAccessLevel) null, parserContext.BaseUri);if (p1 is DependencyObject dependencyObject2)dependencyObject2.SetValue(BaseUriHelper.BaseUriProperty, (object) bamlReaderSettings.BaseUri);if (p1 is Application application2)application2.ApplicationMarkupBaseUri = XamlReader.GetBaseUri(bamlReaderSettings.BaseUri);}finally{if (TraceMarkup.IsEnabled)TraceMarkup.Trace(TraceEventType.Stop, TraceMarkup.Load, p1);EventTrace.EasyTraceEvent(EventTrace.Keyword.KeywordPerf | EventTrace.Keyword.KeywordXamlBaml, EventTrace.Event.WClientParseBamlEnd, (object) parserContext.BaseUri);if (closeStream && stream != null)stream.Close();}return p1;
}
  • 4.加载控件对象

提取BAML(编译过的XAML)解析并创建每个定义的控件对象,设置属性、关联事件等内容。

internal static object LoadBamlStreamWithSyncInfo(Stream stream, ParserContext pc)
{if (Application.s_NestedBamlLoadInfo == null)Application.s_NestedBamlLoadInfo = new Stack<NestedBamlLoadInfo>();NestedBamlLoadInfo nestedBamlLoadInfo = new NestedBamlLoadInfo(pc.BaseUri, stream, pc.SkipJournaledProperties);Application.s_NestedBamlLoadInfo.Push(nestedBamlLoadInfo);try{return XamlReader.LoadBaml(stream, pc, (object) null, true);}finally{Application.s_NestedBamlLoadInfo.Pop();if (Application.s_NestedBamlLoadInfo.Count == 0)Application.s_NestedBamlLoadInfo = (Stack<NestedBamlLoadInfo>) null;}
}

循环遍历所有xaml里的标签节点生成窗体内的内容。

private static object Load(System.Xaml.XamlReader xamlReader,IXamlObjectWriterFactory writerFactory,bool skipJournaledProperties,object rootObject,XamlObjectWriterSettings settings,Uri baseUri)
{XamlContextStack<WpfXamlFrame> stack = new XamlContextStack<WpfXamlFrame>((Func<WpfXamlFrame>) (() => new WpfXamlFrame()));int persistId = 1;settings.AfterBeginInitHandler = (EventHandler<XamlObjectEventArgs>) ((sender, args) =>{if (EventTrace.IsEnabled(EventTrace.Keyword.KeywordPerf | EventTrace.Keyword.KeywordXamlBaml, EventTrace.Level.Verbose)){IXamlLineInfo xamlLineInfo = xamlReader as IXamlLineInfo;int num1 = -1;int num2 = -1;if (xamlLineInfo != null && xamlLineInfo.HasLineInfo){num1 = xamlLineInfo.LineNumber;num2 = xamlLineInfo.LinePosition;}int num3 = (int) EventTrace.EventProvider.TraceEvent(EventTrace.Event.WClientParseXamlBamlInfo, EventTrace.Keyword.KeywordPerf | EventTrace.Keyword.KeywordXamlBaml, EventTrace.Level.Verbose, (object) (args.Instance == null ? 0L : PerfService.GetPerfElementID(args.Instance)), (object) num1, (object) num2);}if (args.Instance is UIElement instance3){int num = persistId++;instance3.SetPersistId(num);}XamlSourceInfoHelper.SetXamlSourceInfo(args.Instance, args, baseUri);if (args.Instance is DependencyObject instance4 && stack.CurrentFrame.XmlnsDictionary != null){XmlnsDictionary xmlnsDictionary = stack.CurrentFrame.XmlnsDictionary;xmlnsDictionary.Seal();XmlAttributeProperties.SetXmlnsDictionary(instance4, xmlnsDictionary);}stack.CurrentFrame.Instance = args.Instance;});XamlObjectWriter xamlWriter = writerFactory == null ? new XamlObjectWriter(xamlReader.SchemaContext, settings) : writerFactory.GetXamlObjectWriter(settings);IXamlLineInfo xamlLineInfo1 = (IXamlLineInfo) null;try{xamlLineInfo1 = xamlReader as IXamlLineInfo;IXamlLineInfoConsumer xamlLineInfoConsumer = (IXamlLineInfoConsumer) xamlWriter;bool shouldPassLineNumberInfo = false;if (xamlLineInfo1 != null && xamlLineInfo1.HasLineInfo && xamlLineInfoConsumer != null && xamlLineInfoConsumer.ShouldProvideLineInfo)shouldPassLineNumberInfo = true;IStyleConnector styleConnector = rootObject as IStyleConnector;WpfXamlLoader.TransformNodes(xamlReader, xamlWriter, false, skipJournaledProperties, shouldPassLineNumberInfo, xamlLineInfo1, xamlLineInfoConsumer, stack, styleConnector);xamlWriter.Close();return xamlWriter.Result;}catch (Exception ex){if (CriticalExceptions.IsCriticalException(ex) || !XamlReader.ShouldReWrapException(ex, baseUri)){throw;}else{XamlReader.RewrapException(ex, xamlLineInfo1, baseUri);return (object) null;}}
}
// Get the XAML content from an external file.
DependencyObject rootElement;
using (FileStream fs = new FileStrearn(xamlFile, FileMode Open)){
rootElement = (DependencyObject)XamlReader.Load(fs);
}// Insert the markup into this window.
this.Content = rootElement;
// Find the control with the appropriate
buttonl = (Button)LogicalTreeHelper.FindLogicalNode(rootElement, ibuttonl");
name.
// Wire up the event handler.
buttonl.Click += buttonl 'Click

【截选内容1,这一段引用lindexi文章内的内容,原文地址在文章末尾】在 WPF 中,在 XAML 里面定义的对象的创建,实际上不是完全通过反射来进行创建的,在WPF框架里面,有进行了一系列的优化。将会通过 XamlTypeInvoker 的 CreateInstance 方法来进行对象的创建,而默认的 XamlTypeInvoker 的 CreateInstance 定义如下。还有其他精彩内容在原文里可以查看;

public virtual object CreateInstance(object[] arguments){ThrowIfUnknown();if (!_xamlType.UnderlyingType.IsValueType && (arguments == null || arguments.Length == 0)){object result = DefaultCtorXamlActivator.CreateInstance(this);if (result != null){return result;}}return CreateInstanceWithActivator(_xamlType.UnderlyingType, arguments);}private object CreateInstanceWithActivator(Type type, object[] arguments){return SafeReflectionInvoker.CreateInstance(type, arguments);}

【截选内容2,这一段引用lindexi文章内的内容,原文地址在文章末尾】

在 EnsureConstructorDelegate 方法里面将会判断如果对象是公开的,那么尝试获取默认构造函数,将默认构造函数做成委托。此时的性能将会是类型第一次进入的时候的速度比较慢,但是后续进入的时候就能使用委托创建,此时性能将会比较好。通过反射创建委托提升性能的方法,详细请看 .NET Core/Framework 创建委托以大幅度提高反射调用的性能 - walterlv

private static bool EnsureConstructorDelegate(XamlTypeInvoker type)
{// 如果类型初始化过构造函数创建,那么返回,这是缓存的方法if (type._constructorDelegate != null){return true;}// 如果不是公开的方法,那么将无法使用反射创建委托的科技if (!type.IsPublic){return false;}// 反射获取对象的构造函数Type underlyingType = type._xamlType.UnderlyingType.UnderlyingSystemType;// Look up public ctors only, for equivalence with Activator.CreateInstanceConstructorInfo tConstInfo = underlyingType.GetConstructor(Type.EmptyTypes);IntPtr constPtr = tConstInfo.MethodHandle.GetFunctionPointer();// 反射创建委托,这样下次访问就不需要使用反射,可以提升性能// This requires Reflection PermissionAction<object> ctorDelegate = ctorDelegate =(Action<object>)s_actionCtor.Invoke(new object[] { null, constPtr });type._constructorDelegate = ctorDelegate;return true;
}

也就是说只有第一次的类型进入才会调用反射创建委托用来提升性能,之后的进入将会使用第一次创建出来的委托来创建对象,这样能提升性能。

4.Reference

dotnet/wpf: WPF is a .NET Core UI framework for building Windows desktop applications. (github.com)

dotnet 读 WPF 源代码笔记 XAML 创建对象的方法 (lindexi.com)

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/293621.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

用心疗眼

训练眼睛的核心绝招——用心&#xff01;——致所有要求具体方法的网友不断有人找我&#xff0c;说自己多少度近视&#xff0c;该如何去训练。针对这样的问题&#xff0c;我总不知如何来回答&#xff0c;因为不同的人应该用不同的训练方法&#xff0c;我所提出的&#xff0c;只…

ubuntu之Unable to lock the administration directory(/var/lib/dpkg/), are you root?13 Permission denie

apt-get install subversion E: 无法打开锁文件 /var/lib/dpkg/lock - open (13 Permission denied) E: Unable to lock the administration directory (/var/lib/dpkg/), are you root?Permission denied 出现这个提示就说明你没有足够的权力去读写这个文件夹的内容,你需要取…

.NET 也有 Husky 了

熟悉前端开发的同学应该知道&#xff0c;前端工程化工作流中有一个很常用的工具&#xff1a;Husky。Husky 方便我们在项目中添加 git hooks&#xff0c;比如配合 lint-staged 在代码提交前进行自动检查编码规范&#xff0c;再比如配合 commitlint 对提交时填写的 message 内容进…

POJ3751 时间日期格式转换【日期计算】

时间日期格式转换Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 8306 Accepted: 3829Description 世界各地有多种格式来表示日期和时间。对于日期的常用格式&#xff0c;在中国常采用格式的是“年年年年/月月/日日”或写为英语缩略表示的”yyyy/mm/dd”&#xff…

sas数据导入终极汇总-之一

将数据文件读入SAS ——DATA Step / PROC IMPORT1.将SAS文件读入SAS——data sasuser.saslin;set "F:\sas1.sas7bdat";run;proc contents datasasuser.saslin;run;2.将其他形式文件导入成SAS ——PROC IMPORT / 直接读入其他形式文件proc import datafile "c:\…

寒门博士分享读博经历成“抖音网红”惹争议,博士该这么“不正经”吗?

全世界只有3.14 % 的人关注了爆炸吧知识最近在抖音上&#xff0c;一个名叫“相宜”的主播火了。短短几个月时间内&#xff0c;她就涨粉940万。而和一般网红不同的是&#xff0c;相宜是一位刚毕业的博士。带火她的视频&#xff0c;是她自述博士毕业后的感想&#xff0c;目前已经…

event.x,event.clientX,event.offsetX区别

x:设置或者是得到鼠标相对于目标事件的父元素的外边界在x坐标上的位置。 clientX:相对于客户区域的x坐标位置&#xff0c;不包括滚动条&#xff0c;就是正文区域。 offsetx&#xff1a;设置或者是得到鼠标相对于目标事件的父元素的内边界在x坐标上的位置。 screenX:相对于用户屏…

.bash_profile和.bashrc说明

/etc/profile: 此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行。并从/etc/profile.d目录的配置文件中搜集shell的设置. /etc/bashrc:  为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取. ~/.bash_profile: 每个用户都可使用…

Android Nine-patch

做了好多客户端软件了&#xff0c;突然发现里面有好多图片都是重复的&#xff0c;个别只是大小不一样&#xff0c;每次都使用大量图片&#xff0c;导致软件过大&#xff0c;项目总结的时候才发现Android已经提供了一种解决方案了&#xff0c;这就是NinePatchDrawable&#xff0…

稍微成型点的用WEBSOCKET实现的实时日志LOG输出

难的是还是就地用JS显示出来相关的发布进度。 还好&#xff0c;花了一下午实现了。 可以移植到项目中去罗。。。 websocket.py&#xff1a; import tornado.ioloop import tornado.web import tornado.websocket from tornado.ioloop import IOLoop from datetime import timed…

一些常用的SAS命令

一些常用的SAS命令 1. 转换文本数据文件的数据步的一般形式为&#xff1a; data 数据集名&#xff1b;infile 文件名&#xff1b; input 变量输入设定&#xff1b; run&#xff1b; 2. 指定逻辑文件名语句的一般形式为&#xff1a;filename 逻辑文件名 ‘文件位置’&#xff…

.NET6之MiniAPI(四):配置

配置文件&#xff0c;是一个每个应用服务程序常用的功能&#xff0c;从原来的终端应用时代&#xff0c;到现在的元宇宙时代&#xff0c;配置都是很悠然自得的存在。asp.net core提供了强大的配置文件访问机制&#xff0c;不管是MVC API还是MiniAPI&#xff0c;使用方式都是相同…

LeetCode:Sudoku Solver Valid Sudouku

其实数独还是我挺喜欢的一个游戏。原来有本数独的书。 其实Sudoku是基于Valid Sudouku.其实一开始有点想太多。基于平常玩数独的经验&#xff0c;有很多解数独的规则。貌似这个人为判断因素比较多。 而且一开始理解的valid是有解无解&#xff0c;其实这里要求的是给定的board里…

Ubuntu之SVN客户端安装+使用

下载SVN 我们先使用sudo apt-get source sudo apt-get update 然后下载svn sudo apt-get install subversion 一步继续一步,每次y 安装成功之后 svn --version查看。 使用 2、 新建一个目录,cd 到新建目录下,将文件 checkout 到本地目录:svn checkout svn://192.168.1…

《SAS编程与数据挖掘商业案例》学习笔记之十一

继续读书笔记&#xff0c;本文重点侧重sas观测值的操作方面&#xff0c; 主要包括&#xff1a;输出观测值、更新观测值、删除观测值、停止输出观测值等 1.output语句 输出当前在pdv中的观测值&#xff0c;继续无条件执行下面的语句。 注意&#xff1a;简单的data步不需要outp…

【1】淘宝sdk装修入门引言

淘宝sdk开发者要具备的一些要求&#xff1a;【1】photoshop图像处理能力【2】html常用标签的基础知识【3】htmlcss布局的基础知识【4】简单的php输出语句【5】对淘宝装修的一些基本了解淘宝sdk的开发流程&#xff1a;【1】设计平面效果图【2】创建本地模板文件【3】创建自定义设…

基于嵌入式webserver的服务器状态监控

其实也是在easyhadoop做第二次重构的时候用到了这个嵌入式的webserver去做服务器状态的监控&#xff0c;可以单独摘出来写个东西。思路主要是用python脚本获取linux服务器的各种状态信息&#xff0c;然后用webserver的方式&#xff0c;以json数据发给http&#xff0c;主控节点去…

Yii框架里用grid.CGridView调用pager扩展不显示最后一页按钮的解决

有如下一例,调用zii.widgets.grid.CGridView显示Blog信息&#xff0c;代码如下&#xff1a; 1 $this->widget(zii.widgets.grid.CGridView, 2 array(3 id>blog-grid,4 dataProvider>$model->search(),5 filter>$model,6 pa…