fresults.cs
来自「Generalization of a Simple Genetic Algor」· CS 代码 · 共 37 行
CS
37 行
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using GeneticAlgorithmLib;
namespace GeneticAlgorithm
{
public partial class FResults : Form
{
#region Genotype
private IGenotype m_Genotype;
public IGenotype Genotype
{
get { return m_Genotype; }
set
{
m_Genotype = value;
this.grid.SelectedObject = value;
}
}
#endregion
public FResults()
{
InitializeComponent();
}
private void FResults_Load(object sender, EventArgs e)
{
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?