use Silverlight Toolkit custom build - silverlight

How do I use a custom build of the Silverlight Toolkit to build my Silverlight project?
I'd like to be able to step into Toolkit code while debugging.

Go to the SourceCode tab and get the latest build for Toolkit.But you will have to reference Toolkit Project in you Working project to be able step into toolkit code while debug .
Here you can find latest builds list:
http://silverlight.codeplex.com/SourceControl/list/changesets

Related

Incorporate react scheduler into my existing web application

I am very new to React, so please bear with me. I have an existing web application created in Visual studio 2017. It's not MVC project. I have found this react calendar
https://github.com/hiramzamorano/react-big-scheduler
And I would like to use it with my project. But I am not sure how to reference the library. Firstly, this link tells me how to add React library to my page
https://reactjs.org/docs/add-react-to-a-website.html#add-jsx-to-a-project
Now I am stuck when I keep reading the calendar documentation about running:
npm install scheduler-react --save
After running the command, literally there are hundreds of files being saved into node_module folder. How could I reference them all? A lot of tutorial online for React and Visual Studio is mostly related to MVC project. I could not find much information dealing with web application.

Breakpoints stopped working - WPF app was Desktop-Bridged from Visual Studio

Last month I Desktop-Bridged my one simple WPF app using in latest version of VS2017 - ver 15.9 on Windows10 - Update 1809. The WPF app was also developed on the exact same environment. Last month, the breakpoints in debug mode were working.
But today the breakpoints are not working. According to this official link:
If you created your package by using the new packaging project available in the 15.4 release of Visual Studio 2017, Just set the packaging project as the startup project, and then press F5 to debug your app.
Please note:
This month, I upgraded VS2017 to VS2019 - Ver16.1.3. But that probably should not make any difference since my other old projects work fine in VS2019.
As shown below, I've verified that the Packaging Project in the solution is indeed the Startup project (as instructed in the link above).
The WPF app is a sample app using the code from here with user interface shown in image 2 below.
Snapshot of VS2019 solution:
UI of the app:
Snapshot of VS2019 top toolbar:
Maybe something during the update messed up your machine settings. Can you check Developer Mode is still active? The configurations you've done on your SLN are good, so breakpoints should be working as expected.

How to I update my React version in the ASP.NET Core React/Redux template project?

I've started learning React with Redux and part of my development has seen me want to use the Material UI to make my application more interesting. I created my project in Visual Studio 2017 using the React with Redux template for ASP.NET Core.
I followed the documentation presented at the MatrialUI site and opted to use the CDN option for delivery of the MaterialUI library.
I started creating a few elements and was quickly confronted with the message that I needed to upgrade my react installation to use the Toolbar.
My question is, when we use the Visual Studio React/Redux ASP.NET Core template, how do I update my react installation? Is that carried out via NPM? I can't see any nuget packages relating to React.
Many thanks
Hey not sure if you found an answer yet but here is my take:
I tried using npm update inside the "ClientApp" folder, but that didn't seem to work. Something that did work though was manually updating each package. So open up a separate terminal -> cd into the ClientApp directory and then
npm i <package name>#<newest version>
so an example would be
npm i react#16.8.6
Some packages you will definitely need to update are React, React-DOM and rimraf. But you might choose to just update all of them while you're at it. When you're using ASP.NET Core try and go for the 2.2 version, which at least already has Bootstrap 4 installed.
Another tip: With Visual Studio, if you hover over the package names in the package.json file inside, it will show you the latest version. That's gonna make it a bit easier to find out what version you want to update to.
Hope that helped! And if anyone has a better solution please let me know.

Can't install Microsoft.Toolkit.Uwp NuGet package in WPF app

I'm losing my mind here trying to install the Microsoft.Toolkit.Uwp NuGet package into a WPF app (need the toast notifications and possibly some more stuff from UWP), but I always get the following error, no matter which version of the toolkit I'm trying to install and no matter which .NET version I target:
Could not install package 'Microsoft.Toolkit.Uwp XXX'. You are trying to install this package into a project that targets '.NETFramework,Version=ZZZ', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author.
The weird thing is that Microsoft actually sends you to the Toolkit to do the exact thing I'm trying: get toast notifications from a WPF app, as can be seen here:
https://learn.microsoft.com/en-us/windows/uwp/design/shell/tiles-and-notifications/send-local-toast-desktop
Excerpt from Microsoft's website
Tried downloading the NuGet package and install it from the local source, tried downloading the whole GitHub project, but to no avail. What am I doing wrong here, guys? I can't seem to figure it out.
P.S: I can't use UWP directly, because this will be an internal company app which needs to do lots of stuff not supported by UWP.
The documentation tells you to download the Notifications library. The Microsoft.Toolkit.Uwp package is not compatible with WPF but the Microsoft.Toolkit.Uwp.Notifications package is.

Getting Started with Sencha Eclipse Plugin

I created a sencha touch project using sencha cmd and imported the project into my eclipse IDE. But the script explorer is showing so many information compared to what i see on their blog. i am follwoing the same instruction as they mention in it. what am i missing..Below is screen shot of my project in eclipse.
Just remove and again add project to eclipse.

Resources