本文整理汇总了C#中InputBox.setResult方法的典型用法代码示例。如果您正苦于以下问题:C# InputBox.setResult方法的具体用法?C# InputBox.setResult怎么用?C# InputBox.setResult使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类InputBox
的用法示例。
在下文中一共展示了InputBox.setResult方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Edit
public static bool Edit( VsqFile vsq ){
int track = 1;
InputBox ib = new InputBox( "Input target track index" );
ib.setResult( track.ToString() );
if ( ib.ShowDialog() != DialogResult.OK ) {
return false;
}
if ( !int.TryParse( ib.getResult(), out track ) ) {
MessageBox.Show( "integer parse error" );
return false;
}
if ( track <= 0 || vsq.Track.size() <= track ) {
MessageBox.Show( "invalid target track" );
return false;
}
using ( SaveFileDialog sfd = new SaveFileDialog() ) {
if ( sfd.ShowDialog() != DialogResult.OK ) {
return false;
}
using ( StreamWriter sw = new StreamWriter( sfd.FileName, false, Encoding.GetEncoding( 932 ) ) ) {
sw.WriteLine( "vlf\t2.0" );
sw.WriteLine( "vlfpart\tPhrase1\t0\t0" );
for ( int i = 0; i < vsq.Track.get( track ).getEventCount(); i++ ) {
VsqEvent ve = vsq.Track.get( track ).getEvent( i );
if ( ve.ID.type == VsqIDType.Anote ) {
string symbol = "";
for ( int j = 0; j < ve.ID.LyricHandle.L0.getPhoneticSymbolList().Count; j++ ) {
symbol += (" " + ve.ID.LyricHandle.L0.getPhoneticSymbolList()[j]);
}
symbol = symbol.Trim();
sw.WriteLine( ve.ID.LyricHandle.L0.Phrase + "\t" + symbol + "\t0" );
}
}
}
}
return true;
}