摘要: public enum BookCategory { Science, Technology, Engineer, Math, Arts } static Array values = Enum.GetValues(typeof(BookCategory)); static Random rnd = 阅读全文
posted @ 2026-07-05 22:02 FredGrit 阅读(7) 评论(0) 推荐(0)
摘要: <ArrayOfBook xmlns="http://schemas.datacontract.org/2004/07/WcfService5" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"><Book><Abstract>Abstract_ 阅读全文
posted @ 2026-06-29 22:35 FredGrit 阅读(5) 评论(0) 推荐(0)
摘要: public class DelegateCmd : ICommand, IDisposable { private readonly Action<object?> execute; private readonly Func<object?, bool> canExecute; private 阅读全文
posted @ 2026-06-27 21:04 FredGrit 阅读(3) 评论(0) 推荐(0)
摘要: <DataGrid.ContextMenu> <ContextMenu> <MenuItem Header="{Binding FirstMIHeader}" FontSize="50" Width="350" Height="150" Command="{Binding FirstCmd}" Co 阅读全文
posted @ 2026-06-20 21:30 FredGrit 阅读(6) 评论(0) 推荐(0)
摘要: public class ProxyBinding : Freezable { protected override Freezable CreateInstanceCore() { return new ProxyBinding(); } public object SourceObject { 阅读全文
posted @ 2026-06-19 20:47 FredGrit 阅读(4) 评论(0) 推荐(0)
摘要: Install-Package Newtonsoft.Json //WCF Producer //D:\C\WcfService3\WcfService3\IBookService.cs using System; using System.Collections.Generic; using Sy 阅读全文
posted @ 2026-06-19 19:22 FredGrit 阅读(5) 评论(0) 推荐(0)
摘要: Install-Package EPPlusInstall-Package Newtonsoft.Json using OfficeOpenXml; using System; using System.Collections.Generic; using System.IO; using Syst 阅读全文
posted @ 2026-06-18 23:48 FredGrit 阅读(7) 评论(0) 推荐(0)
摘要: public class ProxyBinding : Freezable { protected override Freezable CreateInstanceCore() { return new ProxyBinding(); } public object SourceObject { 阅读全文
posted @ 2026-06-14 15:27 FredGrit 阅读(7) 评论(0) 推荐(0)
摘要: //Server model public class Book { public int Id { get; set; } public string Name { get; set; } public string ISBN { get; set; } public string Author 阅读全文
posted @ 2026-06-13 20:31 FredGrit 阅读(5) 评论(0) 推荐(0)
摘要: A Freezable derived object does not require attachment to the WPF visual tree, holds a persistent lifetime once instantiated as a logical resource, an 阅读全文
posted @ 2026-06-13 19:50 FredGrit 阅读(9) 评论(0) 推荐(0)