gpt4 book ai didi

c++ - 保存和打开文件对话框

转载 作者:行者123 更新时间:2023-11-30 01:23:07 30 4
gpt4 key购买 nike

我正在使用 C++。我目前正在设计一个带有 Windows 窗体的程序。我在编写事件处理程序时遇到问题。特别是用于保存和打开文件的单击事件处理程序。我在网上搜索过,但找不到关于如何编写这些事件处理程序的合适解释。所以我要求一个定义明确的定义。

请不要将我发送给 Microsoft,因为他们不提供仅部分完成的事件处理程序示例。

最佳答案

由于乍看之下 Visual Studio 2012 确实支持 C++/CLI Winform 应用程序并不明显,即使 OP 肯定知道这一点,对于其他读者,以下是我创建一个来回答这个问题的方法:

  1. 在 Visual Studio 2012 的“新建项目”对话框中,我选择了 [Visual C++ > CLR > CLR 空项目]。

  2. 在新项目中,我添加了一个普通的 C++ main 函数和一个 Windows 窗体。

  3. 在链接器设置中,我将其从控制台子系统更改为 GUI 子系统(并且由于 Microsoft 链接器的非标准行为,将入口点调整为 mainCRTStartup)。

也就是说,下面显示了生成的 Winform header ,其中只有事件处理程序代码,它会触发一个“打开文件”对话框,是手动添加的。

  • 长注释行 ------ 显示了如何连接事件处理程序。

  • 底部的代码显示了如何编写事件处理程序以及如何运行打开文件对话框。

#pragma once

namespace CppWindowsFormsApplication {

using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections;
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;

/// <summary>
/// Summary for MainWindow
/// </summary>
public ref class MainWindow : public System::Windows::Forms::Form
{
public:
MainWindow(void)
{
InitializeComponent();
//
//TODO: Add the constructor code here
//
}

protected:
/// <summary>
/// Clean up any resources being used.
/// </summary>
~MainWindow()
{
if (components)
{
delete components;
}
}
private: System::Windows::Forms::Button^ button1;
protected:

private:
/// <summary>
/// Required designer variable.
/// </summary>
System::ComponentModel::Container ^components;

#pragma region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
void InitializeComponent(void)
{
this->button1 = (gcnew System::Windows::Forms::Button());
this->SuspendLayout();
//
// button1
//
this->button1->Location = System::Drawing::Point(149, 208);
this->button1->Name = L"button1";
this->button1->Size = System::Drawing::Size(75, 23);
this->button1->TabIndex = 0;
this->button1->Text = L"&Open file";
this->button1->UseVisualStyleBackColor = true;

// ---------------------------------------------------- !Adds event handler -------------------
this->button1->Click += gcnew System::EventHandler(this, &MainWindow::button1_Click);
//
// MainWindow
//
this->AutoScaleDimensions = System::Drawing::SizeF(6, 13);
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
this->ClientSize = System::Drawing::Size(284, 262);
this->Controls->Add(this->button1);
this->Name = L"MainWindow";
this->Text = L"MainWindow";
this->ResumeLayout(false);

}
#pragma endregion
private:
System::Void button1_Click(System::Object^ sender, System::EventArgs^ e)
{
OpenFileDialog^ sfd = gcnew OpenFileDialog();
sfd->Filter = "Text Files|*.txt|All Files|*.*";
if( sfd->ShowDialog() != System::Windows::Forms::DialogResult::OK )
{
return;
}
//MessageBox::Show( sfd->FileName );
MessageBox::Show( "OK" );
}
};
}

我没有修复缩进等,因为我没有时间;几乎所有这些代码都是由 Visual Studio 2012 的 RAD(Rabid 应用程序开发)功能生成的。


与此问题的历史相关,现已删除:

我真的没有时间回答这个问题。我宁愿让别人回答它(并从中获得一些声誉)。这是一个如此简单的问题,我敢肯定,如果它不是这么快就结束了,任何数量的读者,只要比我有更多的时间,都会回答它。

但是回答它,将代码发布到别处,并放弃一些其他事情,是我看到重新打开它的唯一方法。

恳请各位读者不懂的请不要投票关闭

只有当您彻底理解主题并且可以向自己和其他人证明关闭问题后社区会变得更好时,才投票关闭问题。

未能理解一个问题并不一定意味着这个问题不好。

关于c++ - 保存和打开文件对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15374607/

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