Git Product home page Git Product logo

mvvm.navigation's Issues

Question about generated AddViewsAndViewModels AddMappedViewsAndViewModels(IServiceCollection services)

Hello,
I am trying to add the navigation to a new project using Avalonia UI. (I also need log and other things, DI)
I noticed the preprepared calls for
AddViewsAndViewModels and AddMappedViewsAndViewModels and it looks, they are somehow generated.
Among the others, I am referencing NuGet package Mvvm.Navigation.Avalonia" Version="1.4.5", CommunityToolkit.Mvvm" Version="8.2.2"

What are the rules (conventions) for triggering that code generation of that ServiceCollectionExtensions?

If it somehow helps ,In more detail - my "testing" code App.axaml.cs is as following:

private IHost Host { get; } = Microsoft.Extensions.Hosting.Host .CreateApplicationBuilder() .AddMvvmNavigation() .Build();
//public App() //{ // var builder = Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(); // Services = builder.Services; // Host = builder.AddMvvmNavigation().Build(); //}
`
public readonly ServiceCollection Services = new ServiceCollection();
public ServiceProvider ServiceProvider { get; set; }

public override void Initialize()
{

    Services.AddLogging(loggingBuilder =>
      {
          // configure Logging with NLog
          loggingBuilder.ClearProviders();
          loggingBuilder.SetMinimumLevel(LogLevel.Trace);
          loggingBuilder.AddNLog();
      });

    Services.AddSingleton<ViewLocator>(ViewLocator.Instance);
    Services.AddSingleton<IPlatformService, DesktopPlatformService>();
    Services.AddSingleton<IMessageService, NotificationMessageService>();


#if DEBUG
Ioc.Default.ConfigureServices(Host.Services);
#endif
AvaloniaXamlLoader.Load(this);
`
(please excuse me for wrongly formated above code)

(unfortunatelly have to continue with registration in OnAttachedToVisualTree of the MainView, because one ctor parameter of the
MainViewModel needs notification service initialized with following parameter)

var notificationManager = new WindowNotificationManager(TopLevel.GetTopLevel(this));

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.