SilverFlow.Controls.FloatingWindow.Show C# (CSharp) Method

Show() public method

Opens the FloatingWindow in previously saved position or in the center of the FloatingWindowHost.
public Show ( ) : void
return void
        public void Show()
        {
            Show(Position);
        }

Same methods

FloatingWindow::Show ( Point point ) : void
FloatingWindow::Show ( Thickness margins ) : void
FloatingWindow::Show ( double x, double y ) : void

Usage Example

示例#1
0
        public MainPage()
        {
            InitializeComponent();

              FloatingWindow window = new FloatingWindow(); //can also create floating windows directly in the XAML (see MainPage.xaml)
              window.Title = "Centered Window";
              window.IconText = "Centered Window";
              host.Add(window);
              window.Show();
        }
All Usage Examples Of SilverFlow.Controls.FloatingWindow::Show
FloatingWindow