コード例 #1
0
ファイル: ProgressBar.cs プロジェクト: rnowley/gtk3-net
 /// <summary>
 /// Indicates that some progress has been made, but you don’t know how much.
 /// Causes the progress bar to enter “activity mode,” where a block bounces
 /// back and forth. Each call to Pulse() causes the block to move by a little
 /// bit (the amount of movement per pulse is determined by PulseStep).
 /// </summary>
 public void Pulse()
 {
     GtkProgressBar.gtk_progress_bar_pulse(Handle);
 }
コード例 #2
0
ファイル: ProgressBar.cs プロジェクト: rnowley/gtk3-net
 /// <summary>
 /// Creates a new ProgressBar.
 /// </summary>
 public ProgressBar()
 {
     _instance = GtkProgressBar.gtk_progress_bar_new();
 }