2020年12月24日 星期四

[Arduino] GP2Y1010AU0F 灰塵感測器檢測PM2.5


網路找到的資料:




不錯的文章:

GP2Y1010AU0F 灰塵感測器檢測PM2.5
https://atceiling.blogspot.com/2019/10/arduino73-gp2y1010au0f-pm25.html

GP2Y1010AU0F 灰塵感測
https://sites.google.com/site/csjhmaker/e0/gp2y1010au0f-hui-chen-gan-ce

Windows工作排程



不錯的文章:

搭配Windows工作排程, 讓Python自動執行https://www.coderbridge.com/@JohnnyFoxChang/5ea14379cd974b78a69d41e87d10dcde

2020年12月16日 星期三

[C#]問題收集(DataGridView為主)

 

How to change title bar image in WPF Window?
https://stackoverflow.com/questions/5101895/how-to-change-title-bar-image-in-wpf-window

https://www.itread01.com/content/1520581221.html
WPF調用圖片路徑,或資源圖片

Adding Something to DataGridView
https://me1237guy.pixnet.net/blog/post/59183044-adding-something-to-datagridview

怎么去掉DataGridView中最后空白的一行
https://bbs.csdn.net/topics/360135339

How to: Bind data to the Windows Forms DataGridView control
https://docs.microsoft.com/en-us/dotnet/desktop/winforms/controls/how-to-bind-data-to-the-windows-forms-datagridview-control?view=netframeworkdesktop-4.8

Ways to Bind DataGridView in C# Windows Forms
https://www.c-sharpcorner.com/UploadFile/deveshomar/ways-to-bind-datagridview-in-window-forms-C-Sharp/

c# winform 關於DataGridView的一些操作(很全,絕對夠用)
https://www.itread01.com/content/1546688738.html

datagridview前面还有个小箭头,这个如何去掉呢? ==> dataGridView的RowHeadersVisible属性设为false
DataGridview 選取整列資料 ==> 把SelectionMode 屬性改成 FullRowSelect

選取某列  ==>dataGridView1.Rows[i].Selected=true;

DataGridview的總row數(垂直方向) =>DataGridView.RowCount
DataGridview的總column(水平方向) =>DataGridView1.ColumnCount

取值 =>dataGridView1.Rows[0].Cells[1].Value

程式執行按鈕 ==>Button.PerformClick

2020年12月15日 星期二

[C#]how to access form event in user control

 

不錯的文章

C# Development | 煩人的跨執行緒作業無效 : 如何跨執行緒控制 UI 元件
https://medium.com/delightlearner/c-development-%E7%85%A9%E4%BA%BA%E7%9A%84%E8%B7%A8%E5%9F%B7%E8%A1%8C%E7%B7%92%E4%BD%9C%E6%A5%AD%E7%84%A1%E6%95%88-%E5%A6%82%E4%BD%95%E8%B7%A8%E5%9F%B7%E8%A1%8C%E7%B7%92%E6%8E%A7%E5%88%B6-ui-%E5%85%83%E4%BB%B6-41c7b129f47a

C#.net winform : How to access form event in user control
https://www.c-sharpcorner.com/forums/c-sharpnet-winform-how-to-access-form-event-in-user-control

2020年12月6日 星期日

[C#]以sender 操作當前控件

 

學一下......

C# 从控件 sender 操作当前控件
https://blog.csdn.net/qwehong/article/details/108487939

2020年12月3日 星期四

[C#]GUI技巧-子視窗數據傳輸給主視窗


不錯的文章

C#从子窗体传输数据给主窗体--方法(一)委托https://blog.csdn.net/qwehong/article/details/102628472?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.control&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-2.control

C#从子窗体传输数据给其它窗体--方法(二)观察者设计模式的简单应用https://blog.csdn.net/qwehong/article/details/106873552

2020年12月2日 星期三

8051 使用keil的除錯模式檢視程式碼執行時間

了解一下:

使用keil的除錯模式檢視程式碼執行時間
https://www.itread01.com/content/1549472974.html