Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 장고
- channels
- django drf
- pyside6
- qpa_plugin
- orm 최적화
- django test
- materialized
- optimization page
- qwindows.dll
- Self ERP
- tensorflow
- 페이지 최적화
- django role based
- test drive development
- pip 오류
- ERP
- Python
- query 최적화
- django erp
- 장고로 ERP
- django
- django rank
- pyside6 ui
- 파이썬
- QApplication
- pip 설치
- 재고 관리
- 중량 관리
- uiload
Archives
- Today
- Total
취미삼아 배우는 프로그래밍
Hello Blazor 본문
프로젝트 만들기
아무것도 모르지만,
softchris.github.io/pages/dotnet-blazor.html#prerequisites
Learn how to build your first Blazor WebAssembly app in .Net Core 3.0
Learn how to build your first Blazor WebAssembly app in .Net Core 3.0 Follow me on Twitter , happy to take your suggestions on topics or improvements /Chris First time I heard the name I thought this sounds like a Blaze of fire. That's quite the associatio
softchris.github.io
오늘은
이거 하나 글 보구 해보는게 목표입니다.
vscode로 파이썬 만질 때는 잘 못 썼지만,
코딩 국룰인 F5로 일단 실행시켜봤습니다.
어..?
생각지도 못하게 뭐가 막 돌아가요 ㅋㅋㅋ
역시 디버깅 국룰은 F5 아니겠습니까.
근데 저는 이거보다
저 로딩이라는 말이 제일 멋있습니다.
웹어셈블리인게 실감난달까..
@page "/test"
<h3>TestPage</h3>
<p>Current count: @currentText</p>
<button class="btn btn-primary" @onclick="TextChanging">Click me</button>
<button class="btn btn-primary" @onclick="TextChanging_2">Click me2</button>
@code {
private string currentText = "Test";
private void TextChanging()
{
currentText = "nononono!";
}
private void TextChanging_2()
{
currentText = "nadure";
}
}
시험삼아 테스트 페이지도 넣어봤는데
일단 되게 편한것 같네요!
'.Net Core Blazor WASM' 카테고리의 다른 글
배보다 배꼽이 더 큰가? (0) | 2020.07.15 |
---|---|
ASP.Net Core Blazor WASM 도전기(로그인 폼) (0) | 2020.07.12 |
To Do List (0) | 2020.07.10 |
C#도 모르는데 .Net Core를 하면 어떻게 될까? (0) | 2020.07.09 |
Comments