-
my-arcgis
说明: arcgis二次开发,能够实现地图的旋转、缩放和平移等等(arcgis secondary development, to achieve the rotation of the map, zoom and pan, etc.)
- 2011-02-22 21:51:23下载
- 积分:1
-
dianyingtuijian-(1)
电影推荐系统,学校要求做的,vc,比较简单(Movie recommendation system, the school asked to do, vc, is relatively simple)
- 2012-07-07 18:59:41下载
- 积分:1
-
模块实验程序16bit+9341(STM32)
说明: LCD9431 stm32驱动 并行总线 显示文字和图片(Lcd9431 STM32 drives parallel bus to display text and pictures)
- 2021-04-14 12:58:55下载
- 积分:1
-
UCOS学习报告之C8051F060移植篇
说明: UCOS学习报告之C8051F060移植篇.rar
UCOS学习报告之C8051F060移植篇.rar(UCOS study report C8051F060 transplantation chapter. Rar UCOS study report C8 Part 051F060 transplantation. rar)
- 2006-02-15 12:46:25下载
- 积分:1
-
metting
会议记录系统,使用C# + extjs + server(Conference recording system, the use of C#+ extjs+ server)
- 2013-07-27 20:34:59下载
- 积分:1
-
docking
关于太空docking的一些论文文献,特地拿来共享一下
A number of papers on space docking literature, specially brought about sharing(A number of papers on space docking literature, specially brought about sharing)
- 2013-04-06 14:11:58下载
- 积分:1
-
USART_DMA_Interrupt
USART_DMA双缓冲接收数据 stm32f103 双缓冲接收数据(stm USART DMA Double buffer receiving data)
- 2019-02-16 11:30:19下载
- 积分:1
-
EF Code First简介及一个入门级实例
一、EF Code First简介 EntityFramework 代码优先 二、EF Code First第一个简单实例 1、开发环境及数据库说明 开发环境:Visual Studio 2010 Ultimate sp1 Sql Server 2008 R2 数据库:Northwind 2、实例代码结构 结构说明: App:控制台应用程序 Data:数据访问 Domain:实体类 3、安装Entity Framework 在Visual Studio编辑器中点击Tools -> Library Package Manager -> Package Manager Console,在Package Manager Console窗口中执行下面语句,安装最新版Entity Framework。 PM> Install-Package EntityFramework App层和Data层分别添加对EntityFramework的引用: 在App层安装EntityFramework之后,将自动添加App.config和packages.config文件。 App.config配置Entity Framework版本信息及数据库连接信息,修改其中数据连接信息以适应本地实际环境。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 packages.config现实当前项目使用的package: 1 2 3 4 4、实例代码 Domain中Category.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 namespace Northwind.Domain.Entities 7 { 8 public class Category 9 { 10 /// 11 /// 分类ID 12 /// 13 public int CategoryID { get; set; } 14 15 /// 16 /// 分类名称 17 /// 18 public string CategoryName { get; set; } 19 } 20 } Data中NorthwindContext.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using System.Data.Entity; 7 8 using Northwind.Domain.Entities; 9 10 namespace Northwind.Data 11 { 12 public class NorthwindContext : DbContext 13 { 14 public DbSet Categories { get; set; } 15 } 16 } App中Program.cs 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 6 using Northwind.Data; 7 using Northwind.Domain.Entities; 8 9 namespace Northwind.App 10 { 11 class Program 12 { 13 static void Main(string[] args) 14 { 15 Category c = new Category() { CategoryName = "电子数码" }; 16 17 using (NorthwindContext db = new NorthwindContext()) 18 { 19 db.Categories.Add(c); 20 db.SaveChanges(); 21 } 22 23 Console.WriteLine("Finish"); 24 Console.ReadKey(); 25 } 26 } 27 } 5、运行说明 由于在上面的数据库连接字符串中并未包含指定的数据库名称,运行成功之后,将在本地数据引擎中创建如下数据库和表: 数据库名称:Northwind.Data.NorthwindContext 表名称:Categories 6、示例代码附件
- 2014-04-22下载
- 积分:1
-
bluetooth
IOS端通过蓝牙发送和接收
用的是OC语言,在MACOS上编程(bluetooth sent data and bluetooth received data for IOS)
- 2014-08-07 10:38:28下载
- 积分:1
-
opencv实现图像的形态学滤波之膨胀
通过形态学滤波操作,能够实现如下功能:消除噪声、分割独立的图像元素、在图像中连接相邻的元素、寻找图像中明显的极大值区域或极小值区域、求出图像的梯度,膨胀求解图像局部最大值
- 2022-05-16 08:35:38下载
- 积分:1