gpt4 book ai didi

c# - 日历控件的点击事件

转载 作者:行者123 更新时间:2023-11-30 18:24:53 27 4
gpt4 key购买 nike

我在日历控件上添加了一个点击事件。但是在我的实现中,这个事件不起作用。

我在Cal.cs控件中的代码:

#region click
public static RoutedEvent ClickEvent =
EventManager.RegisterRoutedEvent("Click", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(Cal));

public event RoutedEventHandler Click
{
add { AddHandler(ClickEvent, value); }
remove { RemoveHandler(ClickEvent, value); }
}

protected virtual void OnClick()
{
RoutedEventArgs args = new RoutedEventArgs(ClickEvent, this);
RaiseEvent(args);
}

protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
{
base.OnMouseLeftButtonUp(e);
OnClick();
}
#endregion

XAML 代码:

<Calen:Cal x:Name="Calendar" Margin="0,50,0,0" Click="Calendar_Click"/>

C# 代码:

private void Calendar_Click(object sender, RoutedEventArgs e)
{
string t = "";
}

我没有找到任何解决方案。我不知道为什么这段代码不能正常工作。

你能帮我解决这个问题吗?

最佳答案

您需要将DataContext 设置为指向包含隐藏代码的类。

<UserControl>
DataContext="{Binding RelativeSource={RelativeSource Self}}">
</UserControl>

这是必要的,因为不幸的是,默认情况下,DataContext 没有在 WPF 中正确设置。

有关 DataContext 的更多信息,请参阅 ReSharper WPF error: "Cannot resolve symbol "MyVariable" due to unknown DataContext" .

关于c# - 日历控件的点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30724826/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com