예제 #1
0
        public void WriteWeightMat(string basePath)
        {
            var wiPath = basePath + "_WI.csv";
            var woPath = basePath + "_WO.csv";

            WeightInput.WriteTo(wiPath);
            WeightOutput.WriteTo(woPath);
        }
        void ReleaseDesignerOutlets()
        {
            if (txtWeight != null)
            {
                txtWeight.Dispose();
                txtWeight = null;
            }

            if (WeightOutput != null)
            {
                WeightOutput.Dispose();
                WeightOutput = null;
            }
        }
예제 #3
0
 private void btn_percent_Click(object sender, RoutedEventArgs e)
 {
     HeigthOutput.Clear();
     WeightOutput.Clear();
 }