1

次のコードを使用すると、コンテキスト メニュー付きのシステム トレイ アイコンが表示されます。しかし、アプリケーションの実行中に Windows のテーマを変更すると、背景色は変更されません。

private System.Windows.Forms.NotifyIcon notifyIcon1;
    private System.Windows.Controls.ContextMenu contextMenu1;
    private System.Windows.Forms.MenuItem menuItem1;
    private System.ComponentModel.IContainer components;


    protected override void OnStartup(StartupEventArgs e)
    {
        base.OnStartup(e);
        Action action = new Action(ExecuteStartupSequence);
        action.ExecuteProfiled();


        this.components = new System.ComponentModel.Container();
        /*
        this.contextMenu1 = new System.Windows.Forms.ContextMenu();
        this.menuItem1 = new System.Windows.Forms.MenuItem();
         */

        // Initialize contextMenu1
        /*
        this.contextMenu1.MenuItems.AddRange(
                    new System.Windows.Forms.MenuItem[] { this.menuItem1 });
        */

        // Initialize menuItem1
        /*
        this.menuItem1.Index = 0;
        this.menuItem1.Text = "E&xit";
        this.menuItem1.Click += new System.EventHandler(this.menuItem1_Click);
        */
        this.contextMenu1 = this.FindResource("TrayContextMenu") as System.Windows.Controls.ContextMenu;


        // Create the NotifyIcon.
        //this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
        this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(components);

        // The Icon property sets the icon that will appear
        // in the systray for this application.
        notifyIcon1.Icon = new System.Drawing.Icon("Icon1.ico");

        // The ContextMenu property sets the menu that will
        // appear when the systray icon is right clicked.
        // notifyIcon1.ContextMenu = this.contextMenu1;

        // The Text property sets the text that will be displayed,
        // in a tooltip, when the mouse hovers over the systray icon.
        notifyIcon1.Text = "Form1 (NotifyIcon example)";
        notifyIcon1.Visible = true;

        // Handle the DoubleClick event to activate the form.
        notifyIcon1.DoubleClick += new System.EventHandler(this.notifyIcon1_DoubleClick);
        notifyIcon1.Click += new System.EventHandler(this.notifyIcon1_DoubleClick);



        //tb = (TaskbarIcon)FindResource("notifyIcon"); ;
    }

    private void notifyIcon1_DoubleClick(object Sender, EventArgs e)
    {
        this.contextMenu1 = this.FindResource("TrayContextMenu") as System.Windows.Controls.ContextMenu;
        contextMenu1.IsOpen = true;
    }

    private void menuItem1_Click(object Sender, EventArgs e)
    {
        MessageBox.Show("Open");


    }

そして、ここに XAML スタッフ。

<ContextMenu x:Key="TrayContextMenu" Placement="MousePoint" Style="{x:Null}">
        <MenuItem Header="First Menu Item" Style="{x:Null}" />
        <MenuItem Header="Second Menu Item" Style="{x:Null}" />
        </ContextMenu>
        <Popup x:Key="TrayPopup" Placement="MousePoint">
            <Border Width="100" Height="100" Background="White" BorderBrush="Orange" BorderThickness="4">
            <Button Content="Close" Click="menuItem1_Click"></Button>
            </Border>
        </Popup>

私はこれを理解できません.私はすでに Style="{x:Null}" を使用して、構成されていないものをすべて取り除きましたが、単に機能しません. System.Windows.Controls.Contextmenu の使用を避ける必要があるかもしれませんが、代わりに何を使用すればよいですか?

すべてのヒントに感謝します。

ありがとう

4

2 に答える 2

2

Windows の色を変更するときに色を変更したい場合は、コントロールでシステム カラーのいずれかを使用する必要があります wpf のシステム カラー

次に、動的リソースを使用して、リソースが変更されたときにリソースを再適用します

 <Border Width="100" Height="100" Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"
于 2012-09-25T21:41:05.637 に答える
0

影響を受ける XAML コードを次のように変更しました。

<ContextMenu 
        x:Key="TrayContextMenu" 
        Placement="MousePoint" 
        Style="{x:Null}" 
        Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}">
        <MenuItem 
            Header="First Menu Item" 
            Style="{x:Null}"
            Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}"/>

        <MenuItem 
            Header="Second Menu Item" 
            Background="{DynamicResource {x:Static SystemColors.ControlBrushKey}}" />

        </ContextMenu>
        <Popup x:Key="TrayPopup" Placement="MousePoint">
            <Border Width="100" Height="100" Background="White" BorderBrush="Orange" BorderThickness="4">
            <Button Content="Close" Click="menuItem1_Click"></Button>
            </Border>
        </Popup>

しかし、結果は同じでした。

通常はこれで問題は解決しますが、trayicon コンテキストメニューの場合は失敗します。

于 2012-09-26T05:16:49.677 に答える