GithubHelp home page GithubHelp logo

Comments (2)

jmblargent avatar jmblargent commented on June 6, 2024 3

If you are binding to the TabbedPage ViewModel, you need to specify the source and path for the binding. In your first example, if your TabbedPage is named Tabs, then the binding would look like {Binding Source={x:Reference Tabs}, Path=BindingContext.Count}. If you don't set the source, then it is looking for Count in the binding context of Page1.

from xamarin-forms-tab-badge.

mohammedmsadiq avatar mohammedmsadiq commented on June 6, 2024

i also tried the implementation on your sample project and property is not detected any changes. see below;

public class MasterTabbedPageViewModel : ViewModelBase, INotifyPropertyChanged
{
readonly INotificationService notificationService;

    public MasterTabbedPageViewModel(INavigationService navigationService, INotificationService notificationService, IPageDialogService pageDialogService, IProfilePictureService profilePictureService, IDeviceService deviceService, IEventAggregator eventAggregator, IAnalyticsService analyticsService) : base(navigationService, pageDialogService, profilePictureService, deviceService, eventAggregator, analyticsService)
    {
        Title = "MasterTabbedPage";
        this.notificationService = notificationService;           
    }

    public override void OnAppearing()
    {
        this.ExecuteAsyncTask(async () =>
        {
            var item = await this.notificationService.GetNotificationCount();
            courseCount = item.NewCourseCount;
            taskCount = item.TaskCount;
        });
        base.OnAppearing();
    }

    private int courseCount;

    public string CourseCount => courseCount <= 0 ? string.Empty : courseCount.ToString();

    public int CourseCountValue
    {
        get => courseCount;
        set
        {
            if (courseCount == value)
                return;

            courseCount = value;
            RaisePropertyChanged(nameof(CourseCountValue));
            RaisePropertyChanged(nameof(CourseCount));
        }
    }

    private int taskCount;

    public string TaskCount => taskCount <= 0 ? string.Empty : taskCount.ToString();

    public int TaskCountValue
    {
        get => taskCount;
        set
        {
            if (taskCount == value)
                return;

            taskCount = value;
            RaisePropertyChanged(nameof(TaskCountValue));
            RaisePropertyChanged(nameof(TaskCount));
        }
    }

    public event PropertyChangedEventHandler PropertyChanged;

    protected virtual void RaisePropertyChanged(string propertyName)
    {
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
    }

}

from xamarin-forms-tab-badge.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.