2009-01-21 14 views
8

मेरे पास एक टेक्स्टबॉक्स वाला डेटा टेम्पलेट है और इसमें कुछ शैलियों वाला बटन है। जब मैं इसके बगल में टेक्स्टबॉक्स पर फोकस करता हूं तो बटन बटन को माउस पर दिखाना चाहता है। क्या यह संभव है?क्या एक WPF माउसओवर संभव है?

मुझे लगता है कि इसमें कुछ ऐसा शामिल होगा। मैं FindVisualChild और FindName के उपयोग के माध्यम से टेक्स्टबॉक्स प्राप्त कर सकता हूं। फिर मैं कुछ करने के लिए टेक्स्टबॉक्स पर गॉटफोकस ईवेंट सेट कर सकता हूं।

_myTextBox.GotFocus += new RoutedEventHandler(TB_GotFocus); 

यहां टीबी_गॉटफोकस में मैं फंस गया हूं। मैं बटन प्राप्त कर सकता हूं जिसे मैं माउस पर राज्य दिखाना चाहता हूं, लेकिन मुझे नहीं पता कि यह घटना किस घटना को भेजनी है। MouseEnterEvent की अनुमति नहीं है।

void TB_GotFocus(object sender, RoutedEventArgs e) 
    { 
    ContentPresenter myContentPresenter = FindVisualChild<ContentPresenter>(this.DataTemplateInstance); 
    DataTemplate template = myContentPresenter.ContentTemplate; 

    Button _button= template.FindName("TemplateButton", myContentPresenter) as Button; 
    _button.RaiseEvent(new RoutedEventArgs(Button.MouseEnterEvent)); 

    } 
+0

क्या आप हमारे नियंत्रण टेम्पलेट को देखने के लिए पोस्ट कर सकते हैं? –

उत्तर

2

मैं इसे घटना नकली संभव है नहीं लगता है, लेकिन आप खुद को प्रस्तुत करने के लिए रूप अगर यह माउस ले जाएँ पड़ा बटन मजबूर कर सकते हैं।

private void tb_GotFocus(object sender, RoutedEventArgs e) 
{ 
    // ButtonChrome is the first child of button 
    DependencyObject chrome = VisualTreeHelper.GetChild(button, 0); 
    chrome.SetValue(Microsoft.Windows.Themes.ButtonChrome.RenderMouseOverProperty, true); 
} 

private void tb_LostFocus(object sender, RoutedEventArgs e) 
{ 
    // ButtonChrome is the first child of button 
    DependencyObject chrome = VisualTreeHelper.GetChild(button, 0); 
    chrome.ClearValue(Microsoft.Windows.Themes.ButtonChrome.RenderMouseOverProperty); 
} 

आप और इस काम करने के लिए PresentationFramework.Aero.dlll संदर्भित करने के लिए की जरूरत है तो यह केवल एयरो विषय के लिए Vista पर काम करेंगे।

यदि आप इसे अन्य विषयों के लिए काम करना चाहते हैं तो आपको उस थीम के लिए कस्टम कंट्रोल टेम्पलेट बनाना चाहिए जिसे आप समर्थन देना चाहते हैं। एक

सुझावों

के लिए http://blogs.msdn.com/llobo/archive/2006/07/12/663653.aspx देखें
+0

यह उन लोगों के लिए काम करेगा जो मुझे संदेह है, लेकिन मैं एक कस्टम बटन टेम्पलेट का उपयोग कर रहा हूं, इसलिए डिफ़ॉल्ट विंडोज थीम मेरे लिए काम नहीं करेगी। – Jippers

0

रूप jesperll की टिप्पणी करने के लिए ऊपर का पालन करें, मुझे लगता है कि आप गतिशील रूप से एक आप चाहते हैं/बातिल करने के लिए शैली की स्थापना करके प्रत्येक विषय के लिए एक कस्टम टेम्पलेट बनाने के आसपास मिल सकती है।

शैली की परिभाषा के साथ मेरी खिड़की यहां है (लेकिन कुछ भी सेट नहीं है)।

<Window x:Class="WpfApplication.Window1" 
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
xmlns:local="clr-namespace:WpfApplication" 
Title="Window1" Height="300" Width="300"> 

<Window.Resources> 
    <Style TargetType="{x:Type Button}" x:Key="MouseOverStyle"> 
     <Setter Property="Background"> 
      <Setter.Value>Green</Setter.Value> 
     </Setter> 
    </Style> 
</Window.Resources> 

<Grid Height="30"> 
    <Grid.ColumnDefinitions> 
     <ColumnDefinition Width="3*"/> 
     <ColumnDefinition Width="*"/> 
    </Grid.ColumnDefinitions> 
    <TextBox x:Name="MyTextBox" Grid.Column="0" Text="Some Text" Margin="2" GotFocus="TextBox_GotFocus" LostFocus="MyTextBox_LostFocus"/> 
    <Button x:Name="MyButton" Grid.Column="1" Content="Button" Margin="2" MouseEnter="Button_MouseEnter" MouseLeave="Button_MouseLeave" /> 
</Grid> 

इसके बजाय टेम्पलेट में चलाता के माध्यम से शैली निर्धारित करने की है, तो आप उपयोग कर सकते हैं अपने .cs में घटनाओं तो जैसे फाइल:

...

public partial class Window1 : Window 
{ 
    Style mouseOverStyle; 
    public Window1() 
    { 
     InitializeComponent(); 
     mouseOverStyle = (Style)FindResource("MouseOverStyle"); 
    } 
    private void TextBox_GotFocus(object sender, RoutedEventArgs e) { MyButton.Style = mouseOverStyle; } 
    private void MyTextBox_LostFocus(object sender, RoutedEventArgs e) { MyButton.Style = null; } 
    private void Button_MouseEnter(object sender, MouseEventArgs e) { ((Button)sender).Style = mouseOverStyle; } 
    private void Button_MouseLeave(object sender, MouseEventArgs e) { ((Button)sender).Style = null; } 
} 

आप मिल कन्स्ट्रक्टर में शैली का संदर्भ और फिर गतिशील रूप से इसे सेट/सेट करें। इस तरह, आप परिभाषित कर सकते हैं कि आप Xaml में अपनी शैली को किस तरह दिखाना चाहते हैं, और आपको किसी भी नई निर्भरताओं पर भरोसा नहीं करना है।