我对 C 语言编程非常陌生。我的设计如下图所示。
我的概念是我必须在“传输音量”文本框中设置一些音量(例如 100),然后按“设置”按钮。它会自动设置图片框的比例,它工作正常。
现在,当我单击“重新生成”按钮时,我想用颜色填充图片框。图片框要填充的颜色百分比应该是TextBox中关于颜色或液体的数字。
例如,如果我设置 GasPhase =5 ;烃类液体=5;水= 5;油基泥浆 =5;水基泥=5;未识别 = 75。
然后图片必须用“未识别”颜色填充 75%,用 5% 等填充 GasPhase 颜色
我已经编写了一些代码,如下所示。
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;
namespace test
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void txtTransferVolume_TextChanged(object sender, EventArgs e)
{
}
private void txtTransferSet_Click(object sender, EventArgs e)
{
string value = txtTransferVolume.Text;
double midvalue = Convert.ToDouble(value);
lblTransferBottleMax.Text = value;
lblTransferBottleMid.Text = (midvalue / 2).ToString();
}
private void chkTransferManual_CheckedChanged(object sender, EventArgs e)
{
}
private void btnTransferBottleRegenerate_Click(object sender, EventArgs e)
{
}
}
}
请帮助我如何填写我想要的。