- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 C++ 和 Windows 应用商店编程的新手,我一直在定义按钮上的点击处理程序。我指的是 these说明:
- Add a Button control to a parent container.
- To assign a name to the button, set the x:Name attribute to a string value. To refer to a control in code, it must have a name. Otherwise, a name is not required.
- To assign a label to the button, set the Content property to a string value.
- To perform an action when a user clicks the button, add a handler for the Click event. In the Click event handler, add code to perform some action.
<Button x:Name="button1" Content="Button"
Click="Button_Click" />
void MainPage::Button_Click(Object^ sender, RoutedEventArgs^ e) {<br/>
// Add code to perform some action here.<br/>
}
<Button x:Name="button1" Content="Button" Click="Button_Click" />
在Grid
里面阻止 MainPage.xaml
.void MainPage::Button_Click(Object^ sender, RoutedEventArgs^ e) {...}
在 MainPage.xaml.cpp
.现在我遇到两个错误,我无法解决:
error C2039: 'Button_Click' : is not a member of 'ButtonTest::MainPage'
和
IntelliSense: class "ButtonTest::MainPage" has no member "Button_Click"
我该如何解决这个问题?
最佳答案
您需要在 MainPage.xaml.h
文件中将 MainPage::Button_Click
的原型(prototype)定义为该类的成员。喜欢
public:
Button_Click(object^, RoutedEventArgs^);
C++ 需要每个方法的原型(prototype)。
关于c++ - 'Button_Click' : is not a member of 'ButtonTest::MainPage' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15888991/
是否可以将变量传递给 button_click 过程? 背景: 我有 2 个程序,它们都执行一些操作,然后都打开 Form_1。现在,根据打开 Form_1 的过程,我希望命令按钮对表单上的数据执行不
我有代码 Page_Load 和 btnGonder_Click。当我单击 btnGonder 时,我将一些数据记录到数据库中。我在数据列表中获取并显示 page_load 中的代码的数据。问题是当我
我正在尝试使用按钮单击事件来终止 notepad.exe。 因为process.WaitForExit()需要在一个线程中; 现在,点击按钮根本没有任何作用,不知道为什么。 在此先感谢您的帮助:) 这
我正在创建一个用于列出文件的动态表。 它显示文件名、文件大小、修改日期列。此外,我还添加了一列:删除。 在表格中列出文件夹的文件的方法。 public void listFile() { va
我想向我的 button_click 函数添加一个可选参数,以便我可以通过从另一个函数调用它来插入其他信息。 代码如下: private void button1_Click(object s
我在下面有这个 button5 函数。我想要的是,当用户在单击 button5 后想要单击 button1 时,button5 中的 while 循环应该中断,因为选择现在是 1。Choice 是一个
当用户单击我的验证按钮(在我的 C#、WinForm、.net 3.5 应用程序中)时,我想在某个控件周围绘制一个边框(如果它是空的)。假设一个名为 tbxLastName 的文本框,我想我需要做这样
我是 C++ 和 Windows 应用商店编程的新手,我一直在定义按钮上的点击处理程序。我指的是 these说明: Add a Button control to a parent container
我在一个包含用户控件的简单页面中使用通用列表。 我使用 Session 变量填充此列表。此 session 变量在我的 Button_click 事件中设置。 当用户单击按钮时,会设置 session
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
当用户点击按钮上的回车键(而不是鼠标单击按钮时)取消点击事件的简单方法是? 我尝试过: private void button3_Click(object sender, EventArgs
Ted Faison 在 podcast on event-based software design在 .NET、C++ 和 Java 事件语句中提到了“sender”和“self”对象,例如: p
如您所见(如果您查看我之前的一些问题),我对 Qt 还很陌生。我正在制作“read-from-excel-file-push-to-some-DB”模块。 我想在 main.cpp 中获取按钮返回的路
我知道之前有人问过这个问题,但经过大约一个小时的搜索,我无法找出向事件处理程序添加参数的最简单方法。默认情况下,这些处理程序的模板只能接受 (object sender, RoutedEventArg
我正在尝试从数据文件和列表框中删除一行。但我收到错误:'removeButton_Click' 的重载不匹配委托(delegate) 'System.EventHandler'。我该如何解决这个错误?
protected void Button1_Click(object sender, EventArgs e) { TableRow tb = new TableRow(); Tab
我通过将数据显示到数据 GridView 来完成一个窗口窗体应用程序。但是在datagridview中显示数据时出现了一些问题。 函数: private void MySQL_ToDatagridvi
Bootstrap 登录表单如下: User Name Password Log In 单击
我总是不断收到类型错误,说我缺少 1 个必需的位置参数,即“self”,我该如何解决这个问题? from tkinter import * import tkinter from client imp
我正在使用 C#.NET 创建一个数据驱动的应用程序。在此应用程序中,当用户单击加载按钮时,csv 文件中的数据将加载到数据 GridView 中。 此外,还有用于将数据 GridView 中的数据插
我是一名优秀的程序员,十分优秀!