Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/02/16 15:25:14 (8 years ago)
Author:
bburlacu
Message:

#2288: Used localization when formatting strings. Add canceling in CreateTargetVariationExperimentDialog. Remove use of C# 4.6 language features.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.VariableInteractionNetworks/HeuristicLab.VariableInteractionNetworks.Views/3.3/RunCollectionVariableInteractionNetworkView.Designer.cs

    r13789 r13821  
    1 namespace HeuristicLab.VariableInteractionNetworks.Views {
     1using System.Globalization;
     2
     3namespace HeuristicLab.VariableInteractionNetworks.Views {
    24  partial class RunCollectionVariableInteractionNetworkView {
    35    /// <summary>
     
    114116      this.impactThresholdTextBox.Size = new System.Drawing.Size(201, 20);
    115117      this.impactThresholdTextBox.TabIndex = 2;
    116       this.impactThresholdTextBox.Text = "0.2";
     118      this.impactThresholdTextBox.Text = 0.2.ToString(CultureInfo.CurrentCulture);
    117119      this.impactThresholdTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.TextBoxValidating);
    118120      this.impactThresholdTextBox.Validated += new System.EventHandler(this.ImpactThresholdTextBoxValidated);
Note: See TracChangeset for help on using the changeset viewer.