C#이벤트 스터디 위임 및 작은 DEMO
마지막으로 나는 WPF로 작은 DEMO를 만들었다.
클래스cs:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WpfDelegateTest
{
class setEvent
{
public int i = 0;
public delegate string GetMessage(string str);
public event GetMessage gm;
public string str1;
public string getMess(string str)
{
str1=" "+(++i)+" !";
return str1;
}
public void CheckItOut()
{
if (gm != null) gm(str1);
}
}
}
xaml.cs 백엔드 코드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace WpfDelegateTest
{
/// <summary>
/// MainWindow.xaml
/// </summary>
public partial class MainWindow : Window
{
setEvent se = new setEvent();
public MainWindow()
{
InitializeComponent();
//
se.gm += new setEvent.GetMessage(se.getMess);
}
private void btnOk_Click(object sender, RoutedEventArgs e)
{
se.CheckItOut();
label1.Content = se.str1;
}
}
}
프론트 데스크 코드:
<Window x:Class="WpfDelegateTest.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<Grid>
<Label Content=" " Height="28" HorizontalAlignment="Left" Margin="160,109,0,0" Name="label1" VerticalAlignment="Top" />
<Button Content=" " Height="23" HorizontalAlignment="Left" Margin="160,180,0,0" Name="btnOk" VerticalAlignment="Top" Width="75" Click="btnOk_Click" />
</Grid>
</Window>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.