본문 바로가기 메뉴 바로가기

Mit

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Mit

검색하기 폼
  • 분류 전체보기 (143)
    • Maui (7)
    • Xamarin (33)
    • WPF (47)
    • VBA (3)
    • C# WinForm (7)
    • ETC (42)
  • 방명록

분류 전체보기 (143)
.NET Core 웹 응용 프로그램 오류 - HTTP Error 500.35

.NET Core 웹 응용 프로그램 오류 - HTTP Error 500.35 - ANCM Multiple In-Process Applications in same Process m.blog.naver.com/techshare/222032182418 .NET Core 웹 응용 프로그램을 호스팅하는 경우 IIS의 특성상 다중 Web Application을 하나의 AppPool에 지정할 수 있으므로 충돌이 발생하는 것입니다. 만약 이런 설정을 하게 되면, 요청이 먼저 온 웹 응용 프로그램만 정상적으로 호스팅이 되고, 뒤이어 온 웹 응용 프로그램 요청의 경우에는 다음과 같은 오류 메시지를 출력하게 됩니다.

ETC 2020. 12. 28. 15:26
Xamarin.Android http 통신 허용

Resources 폴더에 xml 폴더 생성 network_security_config.xml 파일 생성 xml에서 http 통신 허용할 사이트, IP작성 --> 여기 IP 또는 사이트 Properties 폴더 AndroidManifest.xml 에서 networkSecurityConfig 추가

Xamarin 2020. 12. 11. 16:58
Float flo = Integer/Integer ; flo = 0이다.

Float = 정수/정수는 0이므로 x, y를 float로 캐스팅후 나눈다. float flo = (int)x / (int) y flo = 0 float flo = (float)x / (float)y flo != 0

ETC 2020. 12. 10. 18:04
LINQ to DataSet AsEnumerable Except

Except 메서드를 사용하여 첫 번째 테이블에만 있고 두 번째 테이블에는 없는 연락처를 반환합니다. // Fill the DataSet. DataSet ds = new DataSet(); ds.Locale = CultureInfo.InvariantCulture; FillDataSet(ds); DataTable contactTable = ds.Tables["Contact"]; // Create two tables. IEnumerable query1 = from contact in contactTable.AsEnumerable() where contact.Field("Title") == "Ms." select contact; IEnumerable query2 = from contact in contactT..

ETC 2020. 12. 10. 09:28
Microchart SkiaSharp Label 한글Font적용

MicroChart label 텍스트가 기기 내장 폰트로만 적용되기에 한글이 깨지는 현상이 있음. iOS는 'Apple SD Gothic Neo' 폰트로 사용하면되고, Android는 내장 기본폰트가 모두 깨지기에 Embeded된 font를 사용하여 한글 폰트 적용 SKFontManager.Default.MatchCharacter('가') 로 MatchCharacter를 적용했지만 한글은 정상출력 되었으나 Value값이 깨짐 한글, 영문, 숫자 모두 출력을 위해 외부 폰트를 적용하는것으로 결론. Android MicroChart 한글폰트적용 1. Xamairn.Andriod Assets 폴더에 한글 폰트 복사 2. 네이버 NanumBarunGothic.ttf 폰트를 사용했음 3. SKTypeface에서 ..

Xamarin 2020. 11. 28. 00:50
JSON to DataTable

public static DataTable ToDataTable(this IList data) { PropertyDescriptorCollection props = TypeDescriptor.GetProperties(typeof(T)); DataTable table = new DataTable(); for(int i = 0 ; i

Xamarin 2020. 9. 18. 18:13
Android, iOS Device System Setting Open

On Android: StartActivity(new Intent(Android.Provider.Settings.ActionSettings)); On iOS: UIApplication.SharedApplication.OpenUrl(new NSUrl(UIKit.UIApplication.OpenSettingsUrlString)); On UWP: await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-settings:privacy-location"));

Xamarin 2020. 6. 25. 23:49
Azure Notification Hubs - Google FireBase API KEY

Azure Notification Hub > Setting > Google(GCM/FCM) API Key = FireBase Console > Project > Setting > Cloud Messaging > Server KEY (Not Web API-KEY!!!) Web API-KEY >> Error updating notification hub {"error":{"message":"SubCode=40000. Failed to validate credentials with GCM. The remote server returned an error: (401) Unauthorized

Xamarin 2020. 6. 15. 00:06
MS Face API 얼굴인식 서비스

OPEN_CV 비디오 -> MS FACE API (얼굴이 캡쳐되면) -> AI 매칭(CNN 매칭) -> 서비스 안녕하세요 … 님 당신의 000시험은 D-32일전 입니다. 학생서비스 .... 기술자료: 1. MS FACE API https://docs.microsoft.com/ko-kr/azure/cognitive-services/face/tutorials/faceapiincsharptutorial 2. Face API 참고 http://www.itustory.com/?p=626 3. OpenCV 이미지 전처리 https://d2.naver.com/helloworld/8344782 불러오는 중입니다... Microsoft 얼굴인식 Face API 따라하기 ITU Story - (주)아이티유 공식 블로그 M..

WPF 2020. 4. 23. 17:18
DataGrid Paing 처리

https://www.codeproject.com/Articles/1257860/Paging-WPF-DataGrid Paging WPF DataGrid Simple and easy paging of a WPF DataGrid with DataTable and LINQ queries www.codeproject.com

WPF 2020. 4. 10. 09:03
이전 1 ··· 7 8 9 10 11 12 13 ··· 15 다음
이전 다음
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • Entry '' has empty native path
  • 연산자 뒤에 피연산자가 없습니다.
  • GetCellContent CheckBox Value
  • Windows IIS FTP 디렉토리 목록 오류
  • Xamarin.Ios Firebase Phone User Add
  • WPF Datagrid Cell Value Change
  • C# LINQ Left join
  • ssl_client_socket_impl.cc
  • Label Text LineBreak in Xaml
  • Microcharts
  • Xamarin.Ios Firebase Phone SMS OTP Send
  • ClickOnce 인증서 인증기간 변경
  • Xamarin reCAPTCHA
  • 암호 마스터키
  • Xamarin.Ios Firebase Phone Auth
  • Xamarin Firebase Phone Auth
  • Linux SSH Multi Computer Join
  • Xamarin.Forms
  • Xamarin SMS OTP Send
  • WPF Excel Export Microsoft.Office.Interop 성능향상(열 기준으로 복사)
  • c# Encrypt / Decrypt
  • WPF Scrollviewer in ScrollViwer
  • FileStream Add Byte
  • 서버 수준의 URN 필터
  • Embeded 한글Font적용
  • SkiaSharp
  • WPF Textbox
  • Xamarin Firebase Phone User Add
more
«   2025/07   »
일 월 화 수 목 금 토
1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바