回答編集履歴

1

見直しキャンペーン中

2023/07/29 05:45

投稿

TN8001
TN8001

スコア9898

test CHANGED
@@ -1,75 +1,38 @@
1
1
  > Windowにuriを使用して貼り付けたPageから貼り付け元のwindowを閉じるにはどうしたらよいでしょうか?
2
2
 
3
-
4
-
5
3
  `Page`はこれのことでいいんでしょうか。
6
-
7
4
  [Page クラス (System.Windows.Controls) | Microsoft Docs](https://docs.microsoft.com/ja-jp/dotnet/api/system.windows.controls.page)
8
5
 
9
-
10
-
11
6
  `Window.GetWindow(this).Close();`が簡単でしょうかね。
12
-
13
7
  [Window.GetWindow(DependencyObject) メソッド (System.Windows) | Microsoft Docs](https://docs.microsoft.com/ja-jp/dotnet/api/system.windows.window.getwindow)
14
8
 
15
-
16
-
17
- ```xaml
9
+ ```xml
18
-
19
10
  <Page
20
-
21
11
  x:Class="Questions360604.Page1"
22
-
23
12
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
24
-
25
13
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
26
-
27
14
  Title="Page1">
28
-
29
15
  <StackPanel>
30
-
31
16
  <TextBlock Text="Page1" />
32
-
33
17
  <Button Click="Button_Click" Content="Close" />
34
-
35
18
  </StackPanel>
36
-
37
19
  </Page>
38
-
39
20
  ```
40
21
 
41
-
42
-
43
- ```C#
22
+ ```cs
44
-
45
23
  using System.Windows;
46
-
47
24
  using System.Windows.Controls;
48
25
 
49
-
50
-
51
26
  namespace Questions360604
52
-
53
27
  {
54
-
55
28
  public partial class Page1 : Page
56
-
57
29
  {
58
-
59
30
  public Page1() => InitializeComponent();
60
31
 
61
-
62
-
63
32
  private void Button_Click(object sender, RoutedEventArgs e)
64
-
65
33
  => Window.GetWindow(this).Close();
66
-
67
34
  }
68
-
69
35
  }
70
-
71
36
  ```
72
37
 
73
-
74
-
75
38
  `NavigationWindow`・`Frame`どちらでも閉じました。