public void GoForward()
        {
            if (_browserWindow == null)
            {
                throw new InvalidOperationException(MessageBrowserWindowNotAvailable);
            }

            GoForwardRequested?.Invoke(this, EventArgs.Empty);

            Console.WriteLine($"{nameof(GoForward)}{noop}");
        }
예제 #2
0
 private void GoForward_Click(object sender, RoutedEventArgs e) => GoForwardRequested?.Invoke(this, null);
예제 #3
0
파일: WebView.cs 프로젝트: MIliev11/Samples
 public void GoForward()
 => GoForwardRequested?.Invoke(this, EventArgs.Empty);