Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Criações básicas e simples de HTML, facilitações ( versão de testes )
- //Code form app, o resto só será postado quando tiver pronto.
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- using System.IO;
- namespace WindowsFormsApplication1
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void button1_Click(object sender, EventArgs e)
- {
- if (radioButton1.Checked)
- {
- textBox4.Text = "<html>";
- textBox4.Text += "<title>" + textBox1.Text + "</title>";
- textBox4.Text += "<body bgcolor=\"" + textBox2.Text + "\" text=\"" + textBox3.Text + "\">";
- textBox4.Text += "//Adicione aqui seus códigos em html.";
- textBox4.Text += "</body>";
- textBox4.Text += "</html>";
- }
- }
- private void button2_Click(object sender, EventArgs e)
- {
- if (saveFileDialog1.ShowDialog() == System.Windows.Forms.DialogResult.OK)
- {
- if (!saveFileDialog1.CheckFileExists)
- {
- saveFileDialog1.OpenFile();
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment