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

Future Of DotNet

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

Future Of DotNet

검색하기 폼
  • List All (656) N
    • Entity Framework Core (9)
    • .NET 5 and .NET Conf 2020 (10) N
    • Uno Platform (14)
    • Visual Studio (12)
    • Blazor (2)
    • Windows App(Universal App) (111)
      • Windows IoT & UWP (9)
      • Diablo3Hub (2)
      • OneSearch (5)
      • Beginner (66)
      • Expert (15)
      • Reactive extensions (7)
      • Errors (2)
    • Xamarin Forms (4)
    • Bot Framework (19)
    • Azure (10)
      • Azure App Service (9)
      • Azure Storage Service (0)
      • Azure IoT Hub (0)
    • Windows 10 (53)
      • News (20)
    • WPF (7)
    • Facebook News & Tips (158)
    • Windows 8&8.1 (113)
      • Screenshot AutoCut (3)
      • Korea Tour (4)
      • Sample&Tip 8.1 (10)
      • SkySearch (13)
      • Korea Bus Information (14)
      • Korea Tour Guide (3)
      • KMusic Player (7)
      • Samples (26)
      • Study (10)
      • ETC (18)
    • Windows Phone 8 (42)
      • Korea Bus Information (23)
      • AutoLogin (4)
      • Samples (11)
      • ETC (3)
    • Silverlight (37)
      • Free Board Project (16)
      • Samples (1)
      • WCF RIA Service (10)
      • Prism MEF Cont. (2)
      • ETC (8)
    • HTML5 & MVC4 (16)
    • Portable Class Library (2)
    • Uncategorised Tips and Tricks (3)
    • Kinect for Windows (2)
    • ETC (13)
    • kaki104 Scrap (4)
    • App News (13)
  • 방명록

Windows App(Universal App)/Beginner (66)
MVVM Pattern을 사용하는 개발자를 위한 안내(업데이트 : 2020/12/10)

MVVM Pattern을 사용하는 개발자를 위한 안내 업데이트 2020/12/10 0. 참고The MVVM Pattern Todo list Universal & UWP app MVVM pattern 설명 동영상(오래전에 녹화한 내용입니다.) http://youtu.be/f9aQkuoiPz4 http://youtu.be/uGxboAUwciI http://youtu.be/2lQQiBEjbtU Using MVVM Pattern * new Microsoft MVVM Toolkit 사용 가이드- MVVM pattern을 사용하실 때 이 nuget package를 이용하시면 좋을 것 같습니다. 1. MVVM Pattern의 시작MVVM은 WPF (Windows Presentation Foundation) 및 Sil..

Windows App(Universal App)/Beginner 2020. 12. 10. 21:52
Register Desktop Bridge app and UWP app as Startup program

Register Desktop Bridge app and UWP app as Startup program Future Of DotNet https://youtube.com/FutureOfDotNet UWP앱을 시작프로그램으로 등록/삭제하는 방법입니다. Youtube : https://youtu.be/5cI6oS0HLOQ Blog : https://kaki104.tistory.com/664 Git : https://github.com/kaki104/StartupSample Reference Windows 10 Anniversary Update Configure your app to start at log-in https://bit.ly/31qzlTZ Integrate your desktop app with..

Windows App(Universal App)/Beginner 2020. 8. 25. 19:23
Microsoft Edge(Chromium) WebView2 Control

WebView2 Control Preview 버전이 얼마전에 공개되었습니다. Introduction to Microsoft Edge WebView2 (Preview) https://bit.ly/3alYpOW 응용 프로그램에 웹 기술(HTML, CSS 및 JavaScript)을 포함 할 수 있음 Microsoft Edge (Chromium)을 렌더링 엔진으로 사용 – 호환성 향상 Preview 버전이므로, 프로덕션 앱에 이 버전을 사용 금지 Supported platforms Environments Win32 C/C++ .NET Framework 4.6.2 or later .NET Core 3.0 or later WinUI 3.0 Windows Windows 10 Windows 8.1 Windows 8 W..

Windows App(Universal App)/Beginner 2020. 8. 17. 15:07
Face detecting in UWP app

Face Detection API . Real-time face recognition with Microsoft Cognitive Services . Google Vision API Facial Detection Free : First 1000 units/month $1.5 for 1000 unit : 1001 – 5,000,000 / month . Microsoft Azure Face API Face Detection ~ Face Identification Free : 20 transactions for minute $1.0 for 1000 transactions : 0 – 1M transactions . OpenCV . Dlib C++ Library OpenCV . 오픈 소스 컴퓨터 비전 라이브러리 ..

Windows App(Universal App)/Beginner 2020. 8. 6. 21:01
Create a UWP app with File System Access

UWP이 로컬 파일 시스템을 직접 접근해서 파일이나 폴더의 정보를 가지고 오는 방법에 대한 설명입니다. This is how UWP directly accesses the local file system and fetches information from files or folders. BroadFileSystemAccess All Files that the user has access to Settings } Privacy | File system | Allow access UWP app Version 1803 - default is On Version 1809 - default is Off This capability is not supported on Xbox Key Point Package.app..

Windows App(Universal App)/Beginner 2020. 7. 24. 16:39
Install and update UWP apps from the Web

How to deploy UWP apps - Microsoft Store - App Installer . After Windows 10 version 1803 . Can be installed Local, Shared Folder, or on the Web For developers - Settings -> Update & Security -> For developers -> Sideload apps - Sideload apps must be selected in order to install apps outside of the Microsoft Store. Install Windows 10 apps with App Installer Create an App Installer file with Visua..

Windows App(Universal App)/Beginner 2020. 4. 25. 19:38
LINQ - Join Operations - part5/5

https://youtu.be/bA3oTTVseiE LINQ 마지막 강의 입니다. 고생하셨습니다~ 1. Conversion operators - LINQ Result =} IEnumerable{T} - ToArray() var doublesArray = sortedDoubles.ToArray(); - * ToList() var wordList = sortedWords.ToList(); - ToDictionary() var scoreRecordsDict = scoreRecords.ToDictionary(sr =} sr.Name); - * OfType{T}() var doubles = numbers.OfType{double}(); 2. Element operators - First() (from p in p..

Windows App(Universal App)/Beginner 2020. 4. 15. 14:36
LINQ part 4

* Groupings - group - group n by n % 5 into g * Set operation - Distinct 중복제거 - var uniqueFactors = factorsOf300.Distinct(); - Union 중복제거 결합 - var uniqueNumbers = numbersA.Union(numbersB); - Intersect 교집합 - var commonNumbers = numbersA.Intersect(numbersB); - Except 제외 - IEnumerable aOnlyNumbers = numbersA.Except(numbersB); https://youtu.be/WR8p4bKuqyI - 메뉴 모델과 데이터

Windows App(Universal App)/Beginner 2020. 2. 11. 22:17
LINQ part 3

Partitions - Take numbers.Take(3) - Skip numbers.Skip(4) - TakeWhile numbers.TakeWhile(n => n n % 3 != 0) Orderings - OrderBy orderby word - Custom Comparer words.OrderBy(a => a, new CaseInsensitiveComparer()) - OrderBy ~ Descending orderby d descending - ThenBy orderby degit.Length, digit words.OrderBy(a => a.Length).ThenBy(a => a, new CaseInsensitiveComparer()) - Reverse .Reverse() https://you..

Windows App(Universal App)/Beginner 2020. 2. 4. 23:41
LINQ part2

Projections - select - anonymous type - tuple type - where & select - Multiple Sequences - Child Sequence, Select Many - Multiple where - Indexed Select Many - Practice https://youtu.be/5Rq-ZvUvfOc

Windows App(Universal App)/Beginner 2020. 1. 31. 00:35
이전 1 2 3 4 ··· 7 다음
이전 다음
공지사항
  • 2020-2021 Microsoft MV⋯
  • Microsoft MVP 2019-202⋯
  • 2018 - 2019 MVP 갱신 완료
  • 2017-2018 MVP 갱신 성⋯
  • 블로그 2016년 결산
최근에 올라온 글
  • Action<T>? Func<TResult>?
  • What’s next for System.⋯
  • Xamarin.Forms 프로젝트에⋯
  • .NET Conf 2021 x Seoul
최근에 달린 댓글
  • 위에 링크에있는 소스로 작업⋯
  • 이 프로젝트는 지금 16.9 pre⋯
  • MP를 모두 MVVM으로 변경했습⋯
  • 본문의 MP가 MVVM Pattern을⋯
Total
577,482
Today
129
Yesterday
97
링크
  • FusionWiz의 스토리
  • Jeremy Likness
  • Jerry Nixon
  • Tim Heuer
  • Diederik Krols
  • Pete D
  • Lunar Frog Software
  • Iris Classon
  • Richard's Blog
  • ScottGu's blog
  • Scott Hanselman's blog
  • Fear and Loating blog
  • Rags(누더기)
  • 나나의 블로그
  • Ryu School
  • kodatt
  • Pragmatic Programmer
  • Be MODERN with Windows
  • 닷넷(.NET) 프로그래머 모임
  • XAML or HTML 권영철 MVP
  • 골드러쉬와 함께하는 Hello C#
TAG
  • uno platform
  • entity framework core
  • Microsoft
  • Build 2016
  • dotNETconf
  • IOT
  • uno-platform
  • WebView
  • XAML
  • Bot Framework
  • iot core
  • Windows 10
  • PRISM
  • #Windows Template Studio
  • Android
  • #uwp
  • .net 5.0
  • Cross-platform
  • ef core
  • wasm
  • WPF
  • #MVVM
  • C#
  • MVVM
  • xamarin forms
  • #prism
  • UWP
  • visual studio 2019
  • LINQ
  • #XAML
more
«   2021/01   »
일 월 화 수 목 금 토
          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            
글 보관함
  • 2021/01 (13)
  • 2020/12 (16)
  • 2020/11 (5)
  • 2020/10 (2)
  • 2020/08 (4)

Blog is powered by Tistory / Designed by Tistory

티스토리툴바