Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My main page has the appbar and it is shared across different pages. I wrote the following code to open the appbar on the click of a gridview item.

XAML

<AppBar Opened="AppBar_Opened" IsOpen="{Binding IsAppBarOpen}">

Back end

private void Clock_SelectionChanged(object sender, SelectionChangedEventArgs e)
{            
    App.ViewModel.SelectedClock = (Clock)ThemeGridView.SelectedItem;
    App.WorldViewModel.IsAppBarOpen = true;                  
}

 private void ThemeGridView_ItemClick(object sender, ItemClickEventArgs e)
    {
        App.ViewModel.SelectedClock = (Clock)ThemeGridView.SelectedItem;
        App.WorldViewModel.IsAppBarOpen = true;
    } 

WorldViewModel

private bool _IsAppBarOpen;

public bool IsAppBarOpen
{
   get { return _IsAppBarOpen; }
   set { base.SetProperty(ref _IsAppBarOpen, value); }
}

GridView XAML

<GridView
        Grid.Row="1"
        Grid.Column="1"


         x:Name="ThemeGridView"                    
                ItemsSource="{Binding Clocks}" 
                ItemTemplate="{StaticResource WorldClockTemplate}"
                SelectionChanged="Clock_SelectionChanged"
                SelectionMode="None"
                IsItemClickEnabled="True"
                ItemClick="ThemeGridView_ItemClick"
                >
        <GridView.ItemsPanel>
            <ItemsPanelTemplate>
               <WrapGrid />
            </ItemsPanelTemplate>
        </GridView.ItemsPanel>
    </GridView>

But the appbar is not popping up when i select the gridview item. There is no binding error so its really mysterious!

share|improve this question
can you post definition of your gridview and item tapped event ? – Fixus Sep 25 '12 at 16:09
can you add the DataContext in your xaml? Maybe your binding is wrong. On the other side: I think you should not do that, because does not expect that the appbar opens when clicking in the UI. What do you want to do? AppBar will be invoked when clicking right or with a swipe. – Raubi Sep 26 '12 at 6:02
@Fixus I have added the definition for the gridview. And i think the SelectionChangedEvent works the same as item tapped right? I tried it with right tapped event also but it didnt work. – Bitsian Sep 26 '12 at 10:08
@Raubi I put the same binding to a text block just to check if the binding is happening and the text block is displaying the true value. I think IsOpen property is being set to true but still the appbar is not opening....dunno y! And the appbar contains buttons like add and remove, so when i select an item i want the appbar to immediately popup so that users can remove that item. I dont want users to select the item and then right tap everytime......the appbar should automaticcally popup when the user selects an item – Bitsian Sep 26 '12 at 10:10
does the normal tap even (left tap) works ? – Fixus Sep 26 '12 at 10:14
show 9 more comments

3 Answers

This works for me. I use MVVM Light Toolkit.

public bool AppBarIsOpen
{
    get { return this._appBarIsOpen; }

    set
    {
        if (this._appBarIsOpen == value) { return; }

        this._appBarIsOpen = value;
        this.RaisePropertyChanged("AppBarIsOpen"); // without INotifyPropertyChanged it doesn't work
    }
}


<AppBar
    IsSticky="True"
    IsOpen="{Binding Path=AppBarIsOpen, Mode=TwoWay}">
share|improve this answer

There is not way to bind IsOpen property according the msdn:

Note Binding to the IsOpen property doesn't have the expected results because the PropertyChanged notification doesn't occur when the property is set.

share|improve this answer
<AppBar Opened="AppBar_Opened" IsOpen="{Binding IsAppBarOpen, **Mode=TwoWay**}">
share|improve this answer
Its a good suggestion but strangely its still not working!! :( – Bitsian Oct 11 '12 at 7:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.