正在尝试使用简单的FB API应用来检索状态。 所以我打算做的是用我的字典进行单词检查。 我有一个数据库,存储感觉%和感觉类型的情感数据。 如果状态包含情绪化的单词,我希望进行单词分析。 例如:“我感到悲伤和愤怒”
所以我希望它显示的是...... “用户名” 感觉很好 50%生气 和25%的悲伤。
*%由随机函数计算。 但是,我认为我不可能继续创建标签。如果我的状态有> 5情绪?是否可以创建显示输出的自动标签?
以下是我的代码:
private void EmotionAnalysis_Load(object sender, EventArgs e)
{
label1.Text = tpc.loadInfo(currentId)["target_name"].ToString();
//List<DataRow> result = dict.AngerPercent(fbStatus);
CalculateAndDisplayAnalysis("Angry", topPercentLabel, topFeelingLabel);
CalculateAndDisplayAnalysis("Caring", bottomPercentLabel, bottomFeelingLabel);
//var item = new ListViewItem(new[] { "", String.Format("{0}%", percent.ToString()), result[0]["Genre"].ToString() });
//listViewEmotion.Items.Add(item);
}
private void CalculateAndDisplayAnalysis(string genre, Label percentLabel, Label feelingLabel)
{
List<DataRow> result = dict.GenrePercent(fbStatus, genre);
var rnd = new Random();
int total = 0;
for (int i = 0; i < result.Count; i++)
{
total += rnd.Next(Convert.ToInt32(result[i]["Min_Percentage"]), Convert.ToInt32(result[i]["Max_Percentage"]));
}
if (result.Count != 0)
{
int percent = total / result.Count;
percentLabel.Text = String.Format("{0}%", percent.ToString());
feelingLabel.Text = result[0]["Genre"].ToString();
}
}
答案 0 :(得分:0)
您可以根据需要创建任意数量的标签。您只需设置标签的位置并将其添加到窗体控件枚举:
Label lbl = new Label();
lbl.Text = "MyText";
lbl.Location = new Position(xPos, yPos);
this.Controls.Add(lbl);
您必须跟踪新位置,在这种情况下由xPos
和yPos