04 2020 档案
摘要:源码下载地址:https://github.com/lizhiqiang0204/STM32Hal_W5500_TCPClient.git 单片机用的是STM32F103VE,W5500模块是淘宝买的,本例程是移植野火的代码:http://products.embedfire.com/zh_CN/l
阅读全文
摘要:右击工程->Properties,弹出对话框,点击Add 在接下来的对话框点击Workspace 然后找到自己新建头文件夹,点OK, 在头文件路径中就会增加一条新路径
阅读全文
摘要:1、在启动操作系统之前osKernelStart()引用osDelay()延时函数触发硬件错误 2、没有勾选Systenm tick timer 两个Handler选项导致osDelay()延时函数一直死循环。参考https://www.cnblogs.com/lizhiqiang0204/p/12
阅读全文
摘要:程序集整体框架如下: 其中XmlReader类如下: using System; using System.Collections.Generic; using System.Text; using System.Xml; namespace WpfApp4 { public class XmlRe
阅读全文
摘要:程序集整体框架如下 MainWindow前台代码中Text="{Binding Stu.Name}", Text="{Binding Stu.Gender}" ,Text="{Binding Stu.Age}"都是绑定到类成员 <Window x:Class="WpfApp1.MainWindow"
阅读全文
摘要:在上一篇文章中https://www.cnblogs.com/lizhiqiang0204/p/12367553.html我们使用按键Button来切换界面的,这次我们使用自定义的ItemsControl数据模板来切换页面。MainWindow.xaml如下 <Window.DataContext>
阅读全文