C#_WPF 2020. 6. 24. 15:15

이로써 해묵은 문제를 해결했습니다..  

C#, XAML, DevExpress  연결해서 쓰기가 쉽진않지만 아까운 것이네요..  

 

1. 간단예제.  

- XxxViewMode.cs  

[Command(Name = "DeviceTestCommand", UseCommandManager = true)]

public void DeviceTest(string type) 

{

  string deviceName  = string.Empty ; 

  switch(type) 

  {

    case "Main": 

    ... 

    break; 

    case "Basic": 

    ... 

    break; 

 }

}//End of DeviceTest() 

 

1.1 XxxView.xaml 

... ...  

<Button Grid.Row="4" Grid.Column="2" Content="Test"  .... COmmand="{Binding DeviceTestCommand}" CommandParameter="Main"/> 

 

...... 

 

 

 

 

2. 참고소스 

https://blog.naver.com/PostView.nhn?blogId=goldrushing&logNo=221245773946

 

[WPF MvvM] Command Binding 기본 Ⅱ

이번 시간은 MvvM에서 사용하는 Command Binding 의 기본 두번째 시간입니다. 첫 번째는 아래 링크 참...

blog.naver.com

 

'C#_WPF' 카테고리의 다른 글

Csharp mono remote debugging  (0) 2020.05.24
C# mono  (0) 2020.05.21
Dependency walker 대체버젼 - 하위DLL호출관계와 파일 존재여부 체크  (0) 2020.05.21
C# Devexpress and mono - migration analysis  (0) 2020.05.20
C#채팅예제  (0) 2020.05.15
posted by cskimair
:
C#_WPF 2020. 5. 24. 21:07

 

 

m.blog.naver.com/PostView.nhn?blogId=elepartsblog&logNo=221733804381&proxyReferer=https:%2F%2Fwww.google.com%2F

 

VScode로 라즈베리파이에 원격 접속 및 개발 환경 구축하기

PC에서 라즈베리파이(Raspberry Pi)에 접속하는 원격 라즈베리파이 개발 환경 구축에는 다양한 방법이 ...

blog.naver.com

 

 

 

 

blog.naver.com/PostView.nhn?blogId=heennavi1004&logNo=221533771812

 

윈도우에서 작성한 C#과 .NET 라즈베리파이에서 실행하기

윈도우에서 작성한 C#과 .NET 라즈베리파이에서 실행하기 참고: https://tutorials-raspberrypi.com/wr...

blog.naver.com

 

stackoverrun.com/ko/q/12549452

 

c# - .Net Core Console 응용 프로그램을 Raspberry PI 및 원격 디버그에 배포

.Net Core 1.1 및 Visual Studio 2017 Community를 사용하여 C#에서 기본 콘솔 응용 프로그램을 작성했습니다. 응용 프로그램은 내 컴퓨터에서 제대로 실행되며 동일한 네트워크에서 실행되고 IoT 대시 보드��

stackoverrun.com

 

 

 

 

www.mono-project.com/docs/getting-started/mono-basics/

 

Mono Basics | Mono

Mono Basics After you get Mono installed, it’s probably a good idea to run a quick Hello World program to make sure everything is set up properly. That way you’ll know that your Mono is working before you try writing or running a more complex applicati

www.mono-project.com

 

posted by cskimair
:
C#_WPF 2020. 5. 21. 13:53

 

community.devexpress.com/blogs/ctodx/archive/2009/10/02/devexpress-products-and-mono-part-1-winforms.aspx

 

DevExpress products and Mono (part 1 - WinForms)

Recently I took it upon myself to do some testing with our products and Mono. We've been asked often in the past about Mono compatibility, and given the recent release of — and excitement about — MonoTouch, the number of these questions have increased.

community.devexpress.com

 

posted by cskimair
:
C#_WPF 2020. 5. 21. 12:05

medium.com/oldbeedev/alternative-to-dependency-walker-51ca61189ef

 

 

Alternative to Dependency Walker

오래전 일이지만, VC++ 함수를 export할 때 extern “C”를 안해서 name mangling 문제로 “entry point not found” 에러를 겪은 적이 있습니다. MFC로 UI를 개발하고 인스톨본을 만들어 배포할 때도 …

medium.com

 

Dependency walker가 C#이나 최신 프로그램에서 제대로 분석(?)을 안해줘서 찾다보니

2006년이후로 개발중지라서 현재(2020) 프로그램들은 분석이 안된다고 합니다.

 

 

 

*. 다른 프로그램 - other alternatives of dependency-walker(deprecated since 2006)

www.raymond.cc/blog/check-what-dll-or-ocx-dependency-files-is-needed-for-a-software/

 

5 Tools to Check Dependency Files Needed by Application • Raymond.CC

You can usually fix the error message that a program won't start because a DLL file is missing by just searching for the file and placing it in System32 or the program's folder. To get a more complete list of exactly what the file or program requires to ru

www.raymond.cc

 

'C#_WPF' 카테고리의 다른 글

Csharp mono remote debugging  (0) 2020.05.24
C# mono  (0) 2020.05.21
C# Devexpress and mono - migration analysis  (0) 2020.05.20
C#채팅예제  (0) 2020.05.15
c# in linux  (0) 2020.04.12
posted by cskimair
:
C#_WPF 2020. 5. 20. 18:45

 

community.devexpress.com/blogs/ctodx/archive/2009/10/02/devexpress-products-and-mono-part-1-winforms.aspx

 

DevExpress products and Mono (part 1 - WinForms)

Recently I took it upon myself to do some testing with our products and Mono. We've been asked often in the past about Mono compatibility, and given the recent release of — and excitement about — MonoTouch, the number of these questions have increased.

community.devexpress.com

 

'C#_WPF' 카테고리의 다른 글

C# mono  (0) 2020.05.21
Dependency walker 대체버젼 - 하위DLL호출관계와 파일 존재여부 체크  (0) 2020.05.21
C#채팅예제  (0) 2020.05.15
c# in linux  (0) 2020.04.12
C# for raspberry pi  (0) 2020.04.08
posted by cskimair
:
C#_WPF 2020. 5. 15. 16:18

#C_sharp_for_mono   #chatting_sample_for_C_sharp

c# mono test 를 위한 샘플 찾다가..  

https://www.google.co.kr/search?source=hp&ei=UFznXffLB4TYhwOwx5mgDQ&q=c%23+%EC%B1%84%ED%8C%85%EC%98%88%EC%A0%9C&btnK=Google+%EA%B2%80%EC%83%89&oq=c%23+BitmapSource+black&gs_l=psy-ab.3..33i160.4154.11943..12638...0.0..0.264.1839.0j10j1......0....2j1..gws-wiz.....0..0j0i7i30j0i13j0i30j0i8i30.vrnQr8dJImA&ved=0ahUKEwj3s9bCuJvmAhUE7GEKHbBjBtQQ4dUDCAY&uact=5

 

c# 채팅예제 - Google 검색

[C#야간,콘솔기반 채팅예제..따라해주세요. 수강생 0 1,311 2015.03.16 10:24. ------ -------------------------------------------------------------------------------Cleint.cs

www.google.co.kr

--> 2번이 제일 적당한 예제인것 같네요..  

 

 

 

1.

https://slaner.tistory.com/173?category=546117

 

C#을 이용하여 간단한 1:N 비동기 채팅 프로그램을 만들어보자! - 클라이언트편

안녕하세요! 이번 글에서는 이번 주제의 마지막 장인 1:N 비동기 채팅 프로그램 - 클라이언트 부분을 작성하도록 하겠습니다. 이전 글에서 윈폼 디자인이나 서버쪽을 만들면서 거의 대부분의 작�

slaner.tistory.com

 

2. 

http://blog.naver.com/PostView.nhn?blogId=ym7596&logNo=220959084844&categoryNo=0&parentCategoryNo=0&viewDate=¤tPage=1&postListTopCurrentPage=1&from=postView

 

C# 채팅 서버 만들기 [Windows Form]

안녕하세요 러드입니다. 오늘부터 주마다 네트워크서버에 관하여 올릴까합니다. 저도 초보인지라 공부한 것...

blog.naver.com

 

3. 

https://yeolco.tistory.com/31

 

[TCP/IP] C# 소켓 프로그래밍 - 채팅 프로그램 만들기

TCP/IP 는 패킷 통신 방식으로 IP(인터넷 프로토콜)와 TCP(전송제어 프로토콜)로 구성되어있습니다. 이번에는 C#으로 TCP/IP 통신 프로그램을 이용하여 간단한 채팅프로그램을 만들어보겠습니다. * 개

yeolco.tistory.com

 

4. 

https://it-jerryfamily.tistory.com/entry/Program-C-%EC%84%9C%EB%B2%84%ED%81%B4%EB%9D%BC%EC%9D%B4%EC%96%B8%ED%8A%B8-%EC%B1%84%ED%8C%85-%ED%86%B5%EC%8B%A0

 

[Program C#] 서버-클라이언트 채팅 통신

프로그램 설명 실행 후 Connect 버튼 클릭 후 메시지 전송 후 프로그램 작성 1. handleClient.cs (서버에서 사용하는 클래스) class handleClient { TcpClient clientSocket = null; public Dictionary<tcpcli..< p=""> </tcpcli..<>

it-jerryfamily.tistory.com

 

posted by cskimair
: