'C#_WPF'에 해당되는 글 9건
- 2020.06.24 :: XAML CommandParameter passing string (C#, XAML에서 CommandParameter 로 String 을 전달하기 )
- 2020.05.24 :: Csharp mono remote debugging
- 2020.05.21 :: C# mono
- 2020.05.21 :: Dependency walker 대체버젼 - 하위DLL호출관계와 파일 존재여부 체크
- 2020.05.20 :: C# Devexpress and mono - migration analysis
- 2020.05.15 :: C#채팅예제
이로써 해묵은 문제를 해결했습니다..
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 |
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
'C#_WPF' 카테고리의 다른 글
XAML CommandParameter passing string (C#, XAML에서 CommandParameter 로 String 을 전달하기 ) (0) | 2020.06.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 |
'C#_WPF' 카테고리의 다른 글
XAML CommandParameter passing string (C#, XAML에서 CommandParameter 로 String 을 전달하기 ) (0) | 2020.06.24 |
---|---|
Csharp mono remote debugging (0) | 2020.05.24 |
Dependency walker 대체버젼 - 하위DLL호출관계와 파일 존재여부 체크 (0) | 2020.05.21 |
C# Devexpress and mono - migration analysis (0) | 2020.05.20 |
C#채팅예제 (0) | 2020.05.15 |
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 |
'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 |
#C_sharp_for_mono #chatting_sample_for_C_sharp
c# mono test 를 위한 샘플 찾다가..
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.
C# 채팅 서버 만들기 [Windows Form]
안녕하세요 러드입니다. 오늘부터 주마다 네트워크서버에 관하여 올릴까합니다. 저도 초보인지라 공부한 것...
blog.naver.com
3.
[TCP/IP] C# 소켓 프로그래밍 - 채팅 프로그램 만들기
TCP/IP 는 패킷 통신 방식으로 IP(인터넷 프로토콜)와 TCP(전송제어 프로토콜)로 구성되어있습니다. 이번에는 C#으로 TCP/IP 통신 프로그램을 이용하여 간단한 채팅프로그램을 만들어보겠습니다. * 개
yeolco.tistory.com
4.
[Program C#] 서버-클라이언트 채팅 통신
프로그램 설명 실행 후 Connect 버튼 클릭 후 메시지 전송 후 프로그램 작성 1. handleClient.cs (서버에서 사용하는 클래스) class handleClient { TcpClient clientSocket = null; public Dictionary<tcpcli..< p=""> </tcpcli..<>
it-jerryfamily.tistory.com
'C#_WPF' 카테고리의 다른 글
Dependency walker 대체버젼 - 하위DLL호출관계와 파일 존재여부 체크 (0) | 2020.05.21 |
---|---|
C# Devexpress and mono - migration analysis (0) | 2020.05.20 |
c# in linux (0) | 2020.04.12 |
C# for raspberry pi (0) | 2020.04.08 |
How can I capture KeyDown event on a WPF Page or UserControl object? (0) | 2020.04.06 |