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

Future Of DotNet

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

Future Of DotNet

검색하기 폼
  • List All (817)
    • WPF .NET (101)
    • Windows App SDK (1)
    • MacBook Pro (4)
    • Entity Framework Core (17)
    • .NET 5, 6, 7 (23)
    • Uno Platform (22)
    • Visual Studio (19)
    • Azure (10)
    • Windows 10&11 (59)
      • News (20)
    • UWP & Windows App (120)
      • Beginner (73)
      • Expert (15)
    • Xamarin Forms (4)
    • Bot Framework (19)
    • Facebook News & Tips (158)
    • Previous Platforms (212)
      • Samples (26)
      • KBI (23)
      • ETC (18)
      • Free Board Project (16)
      • WCF RIA Service (10)
      • HTML5 & MVC4 (16)
    • ETC (24)
    • kaki104 Scrap (5)
    • App News (17)
  • 방명록

UWP & Windows App/Beginner (73)
Cookie 관리, Prism으로 시작하는 UWP app Part13

UWP 앱에서 Cookie 관리하는 방법에 대해서 알아 보도록 하겠습니다. * Cookie 클라이언트 컴퓨터에 저장된 작은 정보입니다. 클라이언트 컴퓨터에 Username, Password, City, PhoneNo 등의 사용자 환경 설정 정보를 저장하는 데 사용됩니다. Persist Cookie : 만료되는 시간이 없는 지속형 쿠키 Non-Persist Cookie : 만료시간이 존재하는 비 지속형 쿠키 * HttpBaseProtocolFilter Sharing Sessions Between HttpClient and WebViews on Windows Phones HttpBaseProtocolFilter 클래스는 HttpClient 인스턴스에서 사용하는 기본 필터 또는 처리기를 제공합니다. 추가 필터..

UWP & Windows App/Beginner 2019. 6. 10. 22:51
WebView - Async, EventAggregator

WebView - Async, EventAggregator - Prism으로 시작하는 UWP app Part11 JavaScript에서 Async 메소드를 호출하고 결과를 처리하는 방법 Windows Runtime Component에서 비동기 메소드를 처리하는 방법 IEventAggregator를 이용해서 UWP나 다른 프로젝트로 이벤트를 넘기는 방법 등에 대해서 다루고 있습니다. * Async : Windows Runtime Component에서 async Task 메소드 사용 방법 * IEventAggregator : 개념 및 사용 방법 https://youtu.be/LBS-UJtG2PQ 소스 https://github.com/kaki104/PrismSample2019

UWP & Windows App/Beginner 2019. 5. 29. 17:57
ASP.NET Core 프로젝트에서 .NET Core 3.0을 찾을 수 없다는 오류가 발생했을 때

아래와 같은 오류가 발생했을 때 대처 방법입니다. Severity Code Description Project File Line Suppression State Error NETSDK1045 The current .NET SDK does not support targeting .NET Core 3.0. Either target .NET Core 2.2 or lower, or use a version of the .NET SDK that supports .NET Core 3.0. PrismSample.Web C:\Program Files\dotnet\sdk\2.2.300\Sdks\Microsoft.NET.Sdk\targets\Microsoft.NET.TargetFrameworkInference.target..

UWP & Windows App/Beginner 2019. 5. 28. 16:45
Prism으로 시작하는 UWP app Part10 - WebView에서 JavaScript 연동

WebView 컨트롤에서 JavaScript와 연동을하는 기본적인 방법을 설명합니다. * GitHub에서 소스 다운로드 받고, Branches에서 Part9 소스 싱크하기 * Windows Runtime Component 설명 * Examples https://youtu.be/R89emHtaFvU

UWP & Windows App/Beginner 2019. 5. 26. 14:00
Prism으로 시작하는 UWP app Part9 - VS2019 Upgrade & WebView

기존 VS 2017 개발 환경을 VS 2019 환경, Nuget package 업그레이드를 했습니다. 또한, WebView를 추가하고, User-Agent를 변경하여 모바일 브라우저로 인식이 되도록 하는 방법을 설명합니다. * 개발 환경 설명 * 따라하기 위해서 GitHub에서 소스를 어떻게 받아서 사용하는지 설명 * WebView 페이지 추가 * User-Agent란 * UserAgentHelper 추가하고 사용하기 https://youtu.be/pou8078vX2w 소스 : https://github.com/kaki104/PrismSample2019

UWP & Windows App/Beginner 2019. 5. 22. 13:51
Prism으로 시작하는 UWP app Part8 - Prism 화면 레이어와 Popup

* Prism 앱의 레이어에 대해 설명합니다. . 재정의 불가능 영역 : Popup, ContentDialog, MediaElement . 재정의 가능 영역 : 일반 Page . 기타 영역 : MessageDialog * 소스 : https://github.com/kaki104/PrismSample

UWP & Windows App/Beginner 2019. 4. 1. 22:14
Prism으로 시작하는 UWP app Part7 - 검색과 CommandBar 구현

* Part 7 * AutoSuggestBox * CommandBar - AppBarButton - AppBarElementContainer 소스 https://github.com/kaki104/PrismSample

UWP & Windows App/Beginner 2019. 3. 25. 22:28
Prism으로 시작하는 UWP app Part6 - 상세 페이지 구현

상세 페이지 구현 핵심 정리 * 상세 데이터 조회 * Layout Control - Grid, StackPanel, RelativePanel, Canvas * TextBlock - HeaderedContentControl * Image - ImageEx * XAML design magic!! 소스 https://github.com/kaki104/PrismSample

UWP & Windows App/Beginner 2019. 3. 20. 21:32
Prism으로 시작하는 UWP app Part5 - View에서 ViewModel로 사용자 인터렉션 연결하기

Part 5 Prism으로 시작하는 UWP app Part5 - View에서 ViewModel로 사용자 인터렉션 연결하기 * SelectedItem * SelectionChanged * INavigationService 소스 https://github.com/kaki104/PrismSample

UWP & Windows App/Beginner 2019. 3. 14. 21:13
Prism으로 시작하는 UWP app Part4 - DataGrid

Part4 - View와 ViewModel 연결 방법 - ViewModel의 데이터를 View에 출력하기 - ItemsSource - DataGrid 소스https://github.com/kaki104/PrismSample

UWP & Windows App/Beginner 2019. 3. 10. 21:31
이전 1 2 3 4 5 6 ··· 8 다음
이전 다음
반응형
공지사항
  • 진행 중인 프로젝트 때문에 자주 확인을 못하고⋯
  • 2021-2022 Microsoft MVP 갱⋯
  • 2020-2021 Microsoft MVP 갱⋯
  • Microsoft MVP 2019-2020 갱⋯
  • 2018 - 2019 MVP 갱신 완료
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
  • 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
  • Pragmatic Programmer
  • Be MODERN with Windows
  • 닷넷(.NET) 프로그래머 모임
  • XAML or HTML 권영철 MVP
  • 골드러쉬와 함께하는 Hello C#
  • Nick's .NET Travels
TAG
  • Visual Studio 2022
  • .net 5.0
  • kiosk
  • #prism
  • visual studio 2019
  • WPF
  • Bot Framework
  • MVVM
  • ComboBox
  • IOT
  • ef core
  • PRISM
  • Build 2016
  • LINQ
  • C#
  • #Windows Template Studio
  • Always Encrypted
  • uno platform
  • .net
  • Cross-platform
  • Behavior
  • UWP
  • dotNETconf
  • Microsoft
  • #uwp
  • XAML
  • #MVVM
  • uno-platform
  • Windows 10
  • windows 11
more
«   2025/05   »
일 월 화 수 목 금 토
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

티스토리툴바