当前位置:首页 > IT技术 > Windows编程 > 列表
Windows编程 共有 76447 个文章

C# 操作Exchange 的powershell以实现邮件撤回

    参考地址https://stackoverflow.com/questions/16099853/exchange-and-powershellhttps://docs.microsoft.com/en-us/dotnet/api/microsoft.exchange.webservices.data.exchangeservice?view=exchange-ews-apihttps://docs.microsoft.com/en-us/previous-versions/office/developer/exchange-server-2010/ff326159(v=exch...[继续阅读]

Windows编程

用了10年Windows后,我最终转向Linux

    我的 Ubuntu 桌面如果没有装操作系统,计算机就会变成毫无价值的设备,因为操作系统是连接用户和硬件的中间接口。人们根据自己的偏好和想做的事来选择操作系统。此外,一些人不得不使用他们喜欢的硬件设备自带的操作系统(...[继续阅读]

Windows编程

WinForm使用WebBrowser控件加载百度地图api 2.0版本不显示

    直接上代码:后台:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Security.Permissions;using System.Text;using System.Windows.Forms;namespace WebBrowserTest{ [PermissionSet(SecurityAction.Demand, Name = "FullTrust...[继续阅读]

Windows编程

C# WInform 通过委托跨窗体传值

    不同窗体处于不同线程,相互之间需要通信时,需要用到委托或事件。一Form1.cs:using System.Windows.Forms;namespace SelfLianXiDelegate{ public partial class Form1 : Form { public Form1() { InitializeComponent(); } public void Chan...[继续阅读]

Windows编程

C# 模块封装的形式做一个加法计算器

    模块封装dll然后通过引用的方式来实现这个简易计算器练习。界面▲ 界面添加类库右键 -> 解决方案(注意是解决方案) -> 添加 -> 新建项目 -> 类库 -> CalDLL -> ……编好代码以后 -> 生成解决方案 -> 对应文件夹下面生成...[继续阅读]

Windows编程

alsa-amixer-api

     https://www.alsa-project.org/alsa-doc/alsa-lib/group___simple_mixer.html #include <stdio.h>#include <stdlib.h>#include <string.h>#include <getopt.h>#include <stdarg.h>#include <ctype.h>#include <math.h>#include <errno.h>#include <assert.h>#incl...[继续阅读]

Windows编程

【C#】获取文件信息汇总

    一、删除文件或文件夹File.Delete(fileName);Directory.Delete(fileName, true);/// <summary> /// 删除文件夹以及文件 /// </summary> /// <param name="directoryPath"> 文件夹路径 </param> /// <param name="fileName"> 文件名称...[继续阅读]

Windows编程

C# 如何重写ToString函数及重写的意义

    转载: https://blog.csdn.net/BillCYJ/article/details/90519331  众所周知,C#的每一个类和结构都隐式继承自System.Object,而Object提供了ToString()虚方法,所以任何类的对象都有ToString()方法,该方法可以将对象转化为字符串类型(也可理解为:将...[继续阅读]

Windows编程

C# 比较两个datatable并找出修改差异的值

    C# 比较两个datatable并找出修改差异的值  //要比较的两个表 DataTable dtA; //修改前 DataTable dtB;//修改后 //调用方法 string isEquals = CompareDataTable(dtA, dtB); if (isEquals.Length != 0) { MessageBox.Show("修改...[继续阅读]

Windows编程

使用了阵列卡的服务器,在Windows系统内看到硬盘的品牌、型号信息——aida64

    下载地址lanzoui.com/b04a68c9a(请下载其中的“aida64.zip”)截图...[继续阅读]

Windows编程