如果你想要直接修改ComboBox背景顏色為自訂義漸層顏色,
- Aug 06 Tue 2019 11:21
WPF 如何修改Combox背景顏色
- Aug 05 Mon 2019 12:11
使用Grid與GridSplitter排版布局
- Aug 05 Mon 2019 11:14
WPF Markup Extension
- Jul 31 Wed 2019 10:52
WPF 簡易桌面時鐘
- Jul 31 Wed 2019 10:24
使用EntityFramework連接資料庫
- Jul 18 Thu 2019 23:29
4 Steps of the Deep Learning Workflow
- Jun 20 Thu 2019 22:23
OpenTK Tutorial 1
新增主控台應用程式
- Apr 23 Tue 2019 11:28
Tesseract相關
- Mar 25 Mon 2019 09:55
WPF- MVVM
- Mar 21 Thu 2019 10:41
列舉(枚舉)值看作位標記
1:
2: enum Animal
3: {
4: Dog = 0x0001,
5: Cat = 0x0002,
6: Duck = 0x0004,
7: Chicken = 0x0008
8: }
9: static void Main(string[] args)
10: {
11: Animal animals = Animal.Dog | Animal.Cat;
12: Console.WriteLine(animals.ToString());
13: Console.ReadKey();
14: }
- Mar 21 Thu 2019 09:50
[C#.NET] 定義常數時用 readonly 好? 還是 const 好?
- Mar 21 Thu 2019 09:40
Windows Forms 中裝載 WPF 控制項
(1) 在 Windows Forms 中裝載 WPF 控制項
- Mar 19 Tue 2019 14:25
Binding ICommand (命令繫結)
- Feb 27 Wed 2019 15:38
C# Serialization & Deserialization
- Feb 27 Wed 2019 14:57
SQLite 資料庫 C# 程式範例
- Feb 23 Sat 2019 11:32
C#中Json的序列化和反序列化
- Feb 03 Sun 2019 11:28
安裝DB Browser for SQLite
- Feb 02 Sat 2019 09:21
C# AES 加解密CryptographicException 填補無效,而且無法移除 問題
在做AES 加解密 發生 CryptographicException 填補無效,而且無法移除錯誤,
- Feb 01 Fri 2019 14:48
軟體加密+硬體鎖保護
取得電腦資訊
- Jan 31 Thu 2019 15:29
SQL資料庫查詢/刪除
挑選一段時間範圍內的資料
- Jan 27 Sun 2019 22:13
SVM model fails to load
- Jan 24 Thu 2019 11:27
Load x64 or a x86 DLL depending upon the platform? [duplicate]
- Jan 23 Wed 2019 11:34
c++非同步儲存影像 – Part II
在 c++非同步儲存影像 – Part I 我們提到一個問題
錯誤 C1189 #error: <future> is not supported when compiling with /clr or /clr:pure.
- Jan 23 Wed 2019 10:19
c++非同步儲存影像 – Part I
首先google c++ async找到c++撰寫非同步範例
- Nov 21 Wed 2018 09:45
資料庫CRUD(Create/Read/Update/Delete)
The CREATE DATABASE statement is used to create a database.
- Nov 21 Wed 2018 09:41
資料庫CRUD(Create/Read/Update/Delete)
The CREATE DATABASE statement is used to create a database.
- Nov 05 Mon 2018 08:49
OpenCV顯示中文字
- Nov 04 Sun 2018 03:27
IEnumerable和Yield
首先, 以ArrayList為例,透過foreach指令來依序讀取內容物
1: ArrayList list = new ArrayList();
2: list.Add("1");
3: list.Add(2);
4: list.Add("3");
5: list.Add('4');
6: foreach(object o in list)
7: {
8: Console.Write($"{o.GetType().ToString()} :");
9: Console.WriteLine(o);
10: }
- Oct 29 Mon 2018 11:40
在Windows建置Git環境
- Oct 29 Mon 2018 09:46
c# 6.0 以內差字串取代string.Format()
- Oct 25 Thu 2018 10:57
壓縮特定資料夾成一個壓縮檔案並加上密碼
- Sep 12 Wed 2018 09:28
How well two histograms match with each other?
- Aug 24 Fri 2018 10:56
使用Anaconda安裝OpenCV 3.4.1
- Jul 25 Wed 2018 10:06
Install Visual Studio Code for Windows
- Jul 17 Tue 2018 10:52
在Azure上通过asp.net使用EmguCV
- May 28 Mon 2018 12:03
Point Cloud Data retrieved from Kinect 2
Since the Viz(Visualization Toolkit) is not included in official opencv package, you have to build it
- Apr 19 Thu 2018 11:28
Setup AdamApax.Net Utilty
- Apr 18 Wed 2018 07:51
SQL Server 2017 Express Edition Installation
- Apr 17 Tue 2018 14:42
Http server
- Apr 17 Tue 2018 14:15
8路網絡繼電器 IP繼電器 Web Relay
- Apr 11 Wed 2018 12:16
Some Usefule OpenCV Demostrations
- Apr 09 Mon 2018 11:00
RestSharp and NewtonSoft.Json Installation
- Feb 26 Mon 2018 11:16
Adjust a Contour Point to another place
Given a set of connected points, where they are filled with red color.
- Feb 01 Thu 2018 11:36
Composite Pattern – Design Pattern (Using C#) – Part II
- Jan 26 Fri 2018 10:00
Image Blending and Management of Regions of Interest (ROI) – Part 2
- Jan 24 Wed 2018 01:22
Observer Pattern – Design Pattern (Using C#) – Part II
Today I reveiewed Observer Pattern – Design Pattern (Using C#) and have finished watching Observer Design Pattern tutorial.
As usual, I implemented the example in C# instead of JAVA.
- Jan 23 Tue 2018 03:17
Visitor Pattern – Design Pattern (Using C#)
What is the Visitor Design Pattern ?
1. Allows you to add methods to classes of different types without much altering to these classes.
2. You can make completely different methods depending on the class used.
3. Allows you to define external classes that can extend other classes without majorly edit them.
- Jan 22 Mon 2018 11:01
Interpreter Pattern – Design Pattern (Using C#)
A useful tutorial that help you understand about Interpreter Pattern.
- Jan 22 Mon 2018 10:19
Flyweight Pattern – Design Pattern (Using C#)
- Jan 20 Sat 2018 09:07
Chain Of Responsibility – Design Pattern (Using C#)
Create a logger
- Jan 19 Fri 2018 14:48
Command Pattern – Design Pattern (Using C#) – Part II
- Jan 10 Wed 2018 16:13
Barcode segmentation and decoding
- Jan 09 Tue 2018 19:58
Image Blending and Management of Regions of Interest (ROI)
The following is an example[1] of image blending, which seamlessly combines two different images by using the mask of itself.
- Jan 06 Sat 2018 09:01
Null Object Pattern – Design Pattern (Using C#)
- Jan 04 Thu 2018 19:31
State Machine – Design Pattern (Using C#)
- Jan 04 Thu 2018 15:28
Iterator Pattern – Design Pattern (Using C#)