일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flask
- Django-allauth
- SQL
- tkinter Radio 동적버튼
- FastAPI
- numpy
- array
- for loop
- Django
- check_password
- allauth
- python
- GraphQL
- graphene-django
- Today
- Total
목록[PL]/VB & VB.NET (38)
객
Imports System Imports System.Windows.Interop Imports System.Runtime.InteropServices Public Class Window1 _ Public Structure MARGINS Public cxLeftWidth As Integer Public cxRightWidth As Integer Public cyTopHeight As Integer Public cyButtomheight As Integer End Structure _ Public Shared Function DwmExtendFrameIntoClientArea(ByVal hWnd As IntPtr, ByRef pMarinset As MARGINS) As Integer End Function..
Imports System Imports System.Windows Imports System.Windows.Forms.Integration Class Window1 ' 참고 사이트 : taedi.kr/182 '1차 수정일 : 2010.01.05 수정자 : 객 Private Sub Window1_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles MyBase.Loaded InitializeComponent() Dim exppander = New Expander() exppander.Header = "WPF WindowsFormsHost" Dim host = New WindowsFormsHost() ..
참고사이트 : taedi.kr 이 글에 자세한 정보는 위 사이트에서 확인 하시길.... [ 실행 화면 ] Ariicle Writer : 정태호 님 1차 수정일 : 2010.01.05 수정자 : 객
참고 사이트 : taedi.kr 자세한 설명은 위의 사이트에서 참고 하시면 될 듯...... Imports System Imports System.Windows Class Window1 Private Sub Window1_MouseEnter(ByVal sender As Object, ByVal e As System.Windows.Input.MouseEventArgs) Handles Me.MouseEnter ell.Fill = Brushes.Red End Sub Private Sub Window1_MouseLeave(ByVal sender As Object, ByVal e As System.Windows.Input.MouseEventArgs) Handles Me.MouseLeave ell.Fill = Br..
Class Window1 Private Sub Window1_Loaded(ByVal sender As System.Object, ByVal e As System.Windows.RoutedEventArgs) Handles MyBase.Loaded InitializeComponent() Me.Title = "모니터 실제 해상도" TextBox1.Text = " WIDTH : " & SystemParameters.PrimaryScreenWidth.ToString() TextBox2.Text = " hEIGHT : " & SystemParameters.PrimaryScreenHeight.ToString End Sub Posted by 테디 참고 사이트 : taedi.kr 1차 수정일 : 2010.01.04 수정..