小程序之备忘录开发的源码,微信的react的特性使它很适合用来开发这种单机版简单交互的备忘录。在本示例中,初始时页面只有一个简简单单的欢迎词和文本框,当聚焦文本框开始输入文字,下方出现提交及重置按钮,默认开始时间为当前;点击时间可以重新选择,默认该项目到点前会进行提醒;也可以点绿色开关改成不需要提醒。   页面提交后,下面出现备忘录列表,每行后面有打钩图标用于切换该事项是否已完成、以及X按钮用以删除该事项;当该事项被设为已完成,会跟其他事项有颜色区分。   同时 下面出现一些操作功能,比如切换“显示全部” 以及 “只显示未完成事项”的功能,全部标为已完成、以及删除全部的按钮。   另外当列表存在数据时,下面还有一个按钮保存数据,将当前数据保存到缓存区域,用以下次打开时继续显示个人备忘录状态。   当时间到达有需要提醒的项目前一分钟,或者如果是需要立即开始的当前时间,界面会跳出项目内容,同时播放语音提醒。点击确定表示马上去完成该项目。此时系统会自动将该项目设置为已完成。   个人体会:每个页面的数据绑定(data)是小程序的核心部分,通过setData存入和花括号的读取实现了普通html静态页面没有做到的动态交互;不管是从当前页面提交的表单数据,还是从网络、json文件、api接口读取来的数据在这里交汇并被处理、使用。理解这一点,其他的具体组件/接口等等具体使用方法都是细枝末节了,可以通过查询文档练习掌握。
2021-09-01 14:00:24 11KB 微信源码-APP源码
1
近年来医院自主终端发展迅速,无人值守的自助终端科技降低人员投入,实现了患者的自主预约,挂号,报告查询等业务。因此,医疗自主终端都需要用到对社保卡信息的查询。为此,我们封装了基于C#开发语言的社保卡信息查询的SDK,方便在做自主终端集成时进行二次开发。首先需要将LotusCardDriver.dll 重命名为SSSE32.dll,即可对社保卡信息的读取了。
2021-07-09 17:08:30 650KB 社保卡 自助终端
1
最新的AnyCAD源码,采用的是Winform编写,调用AnyCAD的API,可加载STL等多种3D模型格式,可对3D模型进行平移、旋转、放大缩小等交互,供学习使用。
2021-05-24 14:18:20 7.24MB C# AnyCAD STL
1
具体的 这是一个名为“ Specific ”的Web应用程序。 最好将Specific描述为“编程范例”。 它也可以描述为“有趣,愚蠢,是我一整天不致于编程的一种方式”。 那个“我”是一个叫“亚伦·梅利索克”的人。 他写了这个程序。 它可以进一步描述为“一种语言,可以像Coffeeffe一样编译成Javascript。它被设计为像英语一样读写,对编写代码所用的实际单词的要求极低。它将通过要求含义来工作所有语句的定义都是明确而明确的,因为它将围绕健壮,智能且不断发展的将英语短语与功能性Javascript相关联的短语字典进行设计,因此可以准确地进行编译。以尽可能接近英语的方式解决用户的歧义,它的基本理念是英语是一种完美的机制,可以将各种意义的含义传达给ECMAscript可以使用的机器。尽管可能会很自以为是。 “此仓库是用Specific编写的程序的集合。请随时贡献。该语言将围绕
2021-05-23 17:04:02 3KB
1
《Visual C++范例大全》各章节完整源代码
2021-05-14 18:02:22 7.31MB C++ visual studio 范例源码
1
winform c# listview控件使用范例源码,包括以下范例,listview控件的各种高级使用范例,很齐全。 ActiveGrid.rar ColorListBox.zip DragDropListView.rar ExCheckedListBox.rar EXListView.rar ExtendedListViews.rar ExtListView.rar FadingListView_src.zip FileExplorerClone.zip GlacialList13.zip GroupableListView.rar IconPanel.rar ImageListPopup_demo.zip ListViewEmbeddedControls_src.zip ListViewEx_src.zip ListViewFilter.rar listviewpager.rar MultiLineListBox.rar ObjectListView.zip ObjectListViewDemo.zip PrintableListView.rar RadioListBox.rar WinListViewQQ.rar
2020-01-03 11:37:08 2.07MB listview
1
“欢迎连接到简单TCP服务器”,这是本代码编译成功,运行程序后连接成功后的第一个提示。Delphi编写设计一个基本的CS结构的TCP服务器,客户端代码同样完整,指定主机IP、端口后,就可连接该服务器,客户端和服务端代码都要编译才能运行,先运行服务端并设置好,再启动客户端,然后进行消息发送和接收。
2019-12-21 21:40:07 17KB Delphi源码-界面编程
1
SAX符号化序列范例源码 -------------------- timeseries2symbol.m: -------------------- This function takes in a time series and convert it to string(s). There are two options: 1. Convert the entire time series to ONE string 2. Use sliding windows, extract the subsequences and convert these subsequences to strings For the first option, simply enter the length of the time series as "N" ex. We have a time series of length 32 and we want to convert it to a 8-symbol string, with alphabet size 3: timeseries2symbol(data, 32, 8, 3) For the second option, enter the desired sliding window length as "N" ex. We have a time series of length 32 and we want to extract subsequences of length 16 using sliding windows, and convert the subsequences to 8-symbol strings, with alphabet size 3: timeseries2symbol(data, 16, 8, 3) Input: data is the raw time series. N is the length of sliding window (use the length of the raw time series instead if you don't want to have sliding windows) n is the number of symbols in the low dimensional approximation of the sub sequence. alphabet_size is the number of discrete symbols. 2 <= alphabet_size <= 10, although alphabet_size = 2 is a special "useless" case. Output: symbolic_data: matrix of symbolic data (no-repetition). If consecutive subsequences have the same string, then only the first occurrence is recorded, with a pointer to its location stored in "pointers" pointers: location of the first occurrences of the strings N/n must be an integer, otherwise the program will give a warning, and abort. The variable "win_size" is assigned to N/n, this is the number of data points on the raw time series that will be mapped to a single symbol, and can be imagined as the "compression rate". The symbolic data is returned in "symbolic_data", with pointers to th
2019-12-21 21:22:03 24KB SAX 序列 matlab
1
VB生成二维码图形的控件,非常好用,含使用范例源码
2019-12-21 21:12:59 197KB VB生成二维码 非常好用 二维码范例
1
QRCode_QR码生成代码库(带范例)源码 源码描述: QR码生成代码库,生成效率高,解码速度快。
2019-12-21 21:09:59 6.46MB QR码 范例 二维码 源码
1