摘要: 1.可存在同名对象 class A: def __init__(self): print('this is class.') def A(): print('this is method.') a = A() # this is method. 由于python是边编译边执行的语言,所以只会使用最近 阅读全文
posted @ 2022-10-14 17:07 Bridgebug 阅读(130) 评论(0) 推荐(0) 编辑
摘要: 一、创建类 class People: pass p = People() 二、构造函数 __init__()方法是一种特殊的方法,被称为类的构造函数或初始化方法,当创建了这个类的实例时就会调用该方法。 python中一个类只能有一个构造函数,即只能有一个 __init__ 方法(有多个时,最后一个 阅读全文
posted @ 2022-10-14 16:52 Bridgebug 阅读(67) 评论(0) 推荐(0) 编辑
摘要: 由于个人不喜欢定义那么多变量,而在wpf的vm中需触发更新的变量都要定义一个字段和属性。 例如: private string _name; public string Name { get { return _name; } set { _name = value; RaisePropertyCh 阅读全文
posted @ 2022-09-13 11:38 Bridgebug 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 通常情况下,是将C#代码共享到python脚本中,可以通过脚本调用C#的各个对象。 一、IronPythonRunner 创建IronPython运行器,可通过该运行器运行python脚本。 using System; using System.Collections.Generic; using 阅读全文
posted @ 2022-08-24 15:09 Bridgebug 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 假如有脚本 test1.py def get(): return 'this is test1' 在脚本 test2.py 中调用 test1.py 的 get 方法 1.用全名访问 import test1 print(test1.get()) 2.用别名访问 import test1 as t1 阅读全文
posted @ 2022-07-28 15:31 Bridgebug 阅读(116) 评论(0) 推荐(0) 编辑
摘要: 创建SyncingClass类,继承与ContextBoundObject,并标记Synchronization特性; 需实现上下文同步的实例必须继承ContextBoundObject和标记Synchronization特性; using System; using System.Threadin 阅读全文
posted @ 2022-06-22 10:32 Bridgebug 阅读(154) 评论(0) 推荐(0) 编辑
摘要: FOR FOR %%variable IN (set) DO command [command-parameters] %variable 指定一个单一字母可替换的参数。 (set) 指定一个或一组文件。可以使用通配符。 command 指定对每个文件执行的命令。 command-parameter 阅读全文
posted @ 2022-04-16 01:16 Bridgebug 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 批处理是一种简化的脚本语言,也称作宏。它应用于DOS和Windows系统中,它是由DOS或者Windows系统内嵌的命令解释器(通常是COMMAND. COM或者CMD.EXE)解释运行。类似于Unix中的Shell脚本。批处理文件具有.bat或者.cmd的扩展名。批处理语法中是不区分大小写。 RE 阅读全文
posted @ 2022-04-13 22:17 Bridgebug 阅读(215) 评论(0) 推荐(0) 编辑
摘要: using System; using System.ComponentModel; using System.Drawing; using System.Runtime.InteropServices; using System.Windows.Forms; namespace WindowsFo 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 一、数据模型 Database First (数据库优先):先创建数据库表,然后自动生成EDM文件,EDM文件生成模型类 Model First (模型优先):先创建Edm文件,Edm文件自动生成模型类和数据库;Code First(代码优先):自己写模型类,然后生成数据库,没有EDM。 这里我们现 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(112) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Diagnostics; using System.Drawing; using Spire.Pdf; using Spire.Pdf.AutomaticFields; usin 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(624) 评论(0) 推荐(0) 编辑
摘要: using System; using System.ComponentModel; using System.Reflection; namespace PropertyGridUse { public class PropertyAttribute<T> { /// <summary> /// 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(561) 评论(0) 推荐(0) 编辑
摘要: 1、效果图 2、导入导出 using System; using System.Collections.Generic; using System.IO; using System.Reflection; using System.Text; using System.Windows.Forms; 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(1227) 评论(0) 推荐(0) 编辑
摘要: 一、比特币 比特币(Bitcoin)的概念最初由中本聪在2008年11月1日提出,并于2009年1月3日正式诞生 。根据中本聪的思路设计发布的开源软件以及建构其上的P2P网络。比特币是一种P2P形式的虚拟的加密数字货币。点对点的传输意味着一个去中心化的支付系统。 与所有的货币不同,比特币不依靠特定货 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(653) 评论(0) 推荐(0) 编辑
摘要: 摘要: C#中的自定义控件中的属性(Property)、事件(Event)及一些相关特性(Attribute)的总结 今天学习了下C#用户控件开发添加自定义属性的事件,主要参考了MSDN,总结并实验了一些用于开发自定义属性和事件的特性(Attribute)。 在这里先说一下我的环境: 操作系统:Wi 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(1254) 评论(0) 推荐(0) 编辑
摘要: exec('select * from [Table] where [Name]= ''GG'''); 注意:这里GG是以两个单引号括起来的,不是双引号 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 一、抽象(abstract) 只有类(class)才可以抽象,结构体(struct)不能 ,抽象类不能实例化 class Program { abstract class People { } static void Main(string[] args) { People people = new 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 半导体 物质存在的形式多种多样,固体、液体、气体、等离子体等等。我们通常把导电性差的材料,如煤、人工晶体、琥珀、陶瓷等称为绝缘体。而把导电性比较好的金属如金、银、铜、铁、锡、铝等称为导体。可以简单的把介于导体和绝缘体之间的材料称为半导体。与导体和绝缘体相比,半导体材料的发现是最晚的,直到20世纪30 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 一、窗体 绿色边框框住的区域:屏幕橙色边框框住的区域:窗体黄色边框框住的区域:窗体工作区 1.边框 窗体的FormBorderStyle可以设置以下的值,每个值导致窗体的边框的宽度不一样,但是可以发现的是左、右、下边框的宽度是一样的: // // 摘要: // 指定窗体的边框样式。 [ComVisi 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(2215) 评论(0) 推荐(1) 编辑
摘要: 一、效果Gif 二、Mark块 public partial class Block : UserControl { public Block() { this.Size = new Size(60, 60); MinFontSize = 4; MaxFontSize = 40; } /// <su 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(339) 评论(0) 推荐(0) 编辑
摘要: 占位符 格式化 结果 描述 string.Format("{0,4}", 0) 0 不满足指定位数的情况下,在前置插入空格 string.Format("{0,-4}", 0) 0 不满足指定位数的情况下,在后置插入空格 数字格式化 格式化 结果 格式符 描述 string.Format("{0:0 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(221) 评论(0) 推荐(0) 编辑
摘要: 一、导入 IronPython 包 IronPython:2.7.11VS2019.Net Framework:v4.7.2 打开NuGet包管理器,搜索 IronPython 二、C#中引用python 1.上下文执行 建立 test.py 文件,并将下面代码写入: res = m + n def 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(185) 评论(0) 推荐(0) 编辑
摘要: python中有4中不同的数据容器,那分别对应着C#中的哪种数据结构呢? PythonPython描述C#列表list有序可变的,其中的每个值类型可以不一样List<object>,Array,HashSet<object>元组tuple有序但是值不可改变,值类型可以不一样List<object>, 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 如何在C#代码中实例化一个python的类??? IronPython类不是.NET类。它们是IronPython.Runtime.Types.PythonType的实例,它是Python元类。这是因为Python类是动态的,并且支持在运行时添加和删除方法,这是.NET类无法做到的。 class M 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 如何将一个实例对象或者单独一个方法传递到python代码中呢??? class MyClass: i = 123 __name = "NB" fo = None def __init__(self, num): self.i = num def h(self): return "Hello" def 阅读全文
posted @ 2022-04-12 22:46 Bridgebug 阅读(41) 评论(0) 推荐(0) 编辑