1
czw
2025-07-02 4cca6af72fa2288f433a7c4d604f9639d3fbfc63
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="640" Height="480" x:Class="GZ.Projects.AuxAllWCS.View1" xmlns:local="clr-namespace:GZ.Projects.AuxAllWCS"
        xmlns:local1="clr-namespace:GZ.Projects.AuxAllWCS"
        Title="哈哈wcs"
        >
    <Grid>
        <Grid>
            <TabControl>
                <TabControl.Resources>
                    <Style TargetType="TabItem">
                        <Setter Property="Template">
                            <Setter.Value>
                                <ControlTemplate TargetType="TabItem">
                                    <Border Name="Border" BorderThickness="1,1,1,0" BorderBrush="Gainsboro" CornerRadius="4,4,0,0" Margin="2,0">
                                        <ContentPresenter x:Name="ContentSite"
                                        VerticalAlignment="Center"
                                        HorizontalAlignment="Center"
                                        ContentSource="Header"
                                        Margin="10,2"/>
                                    </Border>
                                    <ControlTemplate.Triggers>
                                        <Trigger Property="IsSelected" Value="True">
                                            <Setter TargetName="Border" Property="Background" Value="LightSkyBlue" />
                                        </Trigger>
                                        <Trigger Property="IsSelected" Value="False">
                                            <Setter TargetName="Border" Property="Background" Value="GhostWhite" />
                                        </Trigger>
                                    </ControlTemplate.Triggers>
                                </ControlTemplate>
                            </Setter.Value>
                        </Setter>
                    </Style>
                </TabControl.Resources>
                <TabItem>
                    <TabItem.Header>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="emmm" Foreground="Orange" />
                        </StackPanel>
                    </TabItem.Header>
                    <TextBlock HorizontalAlignment="Center" FontFamily="Courier New" Text="&#x0a;
////////////////////////////////////////////////////////////////////&#x0a;
//                          _ooOoo_                               //&#x0a;
//                         o8888888o                              //&#x0a;
//                         88' 。 '88                              //&#x0a;
//                         (| ^_^ |)                              //&#x0a;
//                         O\  =  /O                              //&#x0a;
//                      ____/`---'\____                           //&#x0a;
//                    .'  \\|     |//  `.                         //&#x0a;
//                   /  \\|||  :  |||//  \                        //&#x0a;
//                  /  _||||| -:- |||||-  \                       //&#x0a;
//                  |   | \\\  -  /// |   |                       //&#x0a;
//                  | \_|  ''\---/''  |   |                       //&#x0a;
//                  \  .-\__  `-`  ___/-. /                       //&#x0a;
//                ___`. .'  /--.--\  `. . ___                     //&#x0a;
//               .'' '《`.___\_《|》_/___.'  》'''.                    //&#x0a;
//            | | :  `- \`.;`\ _ /`;.`/ - ` : | |                 //&#x0a;
//            \  \ `-.   \_ __\ /__ _/   .-` /  /                 //&#x0a;
//      ========`-.____`-.___\_____/___.-`____.-'========         //&#x0a;
//                           `=---='                              //&#x0a;
//      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^        //&#x0a;
//           佛祖保佑       永无BUG     永不修改                     //&#x0a;
////////////////////////////////////////////////////////////////////" 
                     TextWrapping="Wrap" />
                </TabItem>
                <TabItem>
                    <TabItem.Header>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="WebView" Foreground="Purple" />
                        </StackPanel>
                    </TabItem.Header>
                </TabItem>
                <!--<TabItem>
                    <TabItem.Header>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="AGV任务" Foreground="Black" />
                        </StackPanel>
                    </TabItem.Header>
                    <Label Content="Content goes here..." />
                </TabItem>
                <TabItem>
                    <TabItem.Header>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="壳体下料" Foreground="Blue" />
                        </StackPanel>
                    </TabItem.Header>
                    <Label Content="Content goes here..." />
                </TabItem>
                <TabItem>
                    <TabItem.Header>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="总装上料" Foreground="Red" />
                        </StackPanel>
                    </TabItem.Header>
                </TabItem>
                <TabItem>
                    <TabItem.Header>
                        <StackPanel Orientation="Horizontal">
                            <TextBlock Text="扫码头" Foreground="Green" />
                        </StackPanel>
                    </TabItem.Header>
                </TabItem>-->
            </TabControl>
        </Grid>
    </Grid>
</Window>