Example #1
0
 private void OutCombo_SelectedIndexChanged(object sender, EventArgs e)
 {
     _outputSelected             = (OutputSelector)outCombo.SelectedIndex;
     outIgnoreAlphaCheck.Enabled = false;
 }
Example #2
0
 public BitmapConverter(string outputPath, OutputSelector selected, bool inputIgnoreAlpha)
     : base(outputPath, selected)
 {
     _inputIgnoreAlpha = inputIgnoreAlpha;
 }
Example #3
0
 public void OutputSelectorTestTearDown()
 {
     node = null;
 }
Example #4
0
 public void OutputSelectorTestSetUp()
 {
     node = new OutputSelector(context);
 }
 public XamlConverter(string outputPath, OutputSelector selected)
     : base(outputPath, selected)
 {
 }
 public SpecialGifConverter(string outputPath, OutputSelector selected)
     : base(outputPath, selected)
 {
 }
Example #7
0
 protected BaseConverter(string outputPath, OutputSelector selected)
 {
     _outputPath     = outputPath;
     _outputSelected = selected;
 }