add text to pic

2019-04-15 14:29发布

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.IO;
using System.Drawing.Imaging;

namespace StudySampleCSharp
{
    
/// 
    
/// Form1 の概要の説明です。
    
/// 

    public class Form1 : System.Windows.Forms.Form
    
{
        
private System.Windows.Forms.Label label1;
        
private System.Windows.Forms.Label label2;
        
private System.Windows.Forms.TextBox txtLogo;
        
/// 
        
/// 必要なデザイナ変数です。
        
/// 

        private System.ComponentModel.Container components = null;
        
private System.Windows.Forms.Button btnForeColor;
        
private System.Windows.Forms.Button btnBackColor;        
        
private System.Windows.Forms.Button btnFonts;
        
private System.Windows.Forms.ComboBox cmbPosition;
        
private System.Windows.Forms.Button btnExcute;
        
private System.Windows.Forms.ListBox listBoxFile;
        
private System.Windows.Forms.Button btnSource;
        
private System.Windows.Forms.Button btnDestination;
        
private System.Windows.Forms.TextBox txtDestination;
        
private System.Windows.Forms.TextBox txtSource;

        
private Font titleFont = new Font("MS UI Gothic",9);
        
private Color foreColor = Color.White;
        
private System.Windows.Forms.Label lblDemo;
        
private System.Windows.Forms.PictureBox pictureBoxDemo;
        
private System.Windows.Forms.TextBox textBox1;
        
private System.Windows.Forms.TextBox textBox2;
        
private Color backColor = Color.Transparent;

        
public Form1()
        
{
            
//
            
// Windows フォーム デザイナ サポートに必要です。
            
//
            InitializeComponent();

            
//
            
// TODO: InitializeComponent 呼び出しの後に、コンストラクタ コードを追加してください。
            
//
        }


        
/// 
        
/// 使用されているリソースに後処理を実行します。
        
/// 

        protected override void Dispose( bool disposing )
        
{
            
if( disposing )
            
{
                
if (components != null
                
{
                    components.Dispose();
                }

            }

            
base.Dispose( disposing );
        }


        
Windows フォーム デザイナで生成されたコード