Search results for query: *

  • Users: Dalski
  • Content: Threads
  • Order by date
  1. D

    Resolved Best Way To Display Pdf On Screen?

    Shockingly there is nowhere near as much info out there on this than what you'd think there would be. I need to display a pdf as an image on screen. Hopefully most of the time they will be clean vectors, however sometimes they will be rasterized. PDFSharp seems like the open-source solution...
  2. D

    Resolved Unreal Engine For My Framework?

    In another forum I received conflicting advice about using C++ & pre-built UI's like Qt or xlWidgets. Had to ditch C++ because I found the GUI a bit slow-going so have switched to C#. I'm in the process of making my own "cad-like" software (don't worry I'm not expecting to conquer AutoCad). The...
  3. D

    Resolved Decent Written Tutorials?

    Can anyone recommend decent tutorials? https://docs.microsoft.com/en-us/dotnet/framework/wpf/getting-started/walkthrough-my-first-wpf-desktop-application https://docs.microsoft.com/en-us/dotnet/framework/wpf/getting-started/wpf-walkthroughs I have completed some on MSDN. The second link...
  4. D

    Resolved How To Override The Runtime System.dll Namespace?

    I'm trying to understand inheritance fully Inheritance - C# Programming Guide but it'd be better if I could put the object class in the actual tutorial. I want to fully absorb it by stepping through the code & see the Object class working. The tutorial only has the derived classes WorkItem &...
  5. D

    Resolved Contravariance Not Working As Tutorial

    I cannot seem to get the Zebra class to execute it's method. Though the delegate is being passed as a Zebra delegate, contravariantly it's being received in the MyMammalMethod as the base class Mammal. I can't see what I haven't copied exactly in the tutorial, apart from the fact that I...
  6. D

    Resolved Visual Studio - List Of Default Font Colours & Their Syntax.

    Haven't found anything on google/ vs prefs showing a list of the default font colours & their meaning. Can anyone point me to a link showing them? It seems: Function Identifiers - Yellow; Class Identifiers - Green; Variable Identifiers - Light Blue.
  7. D

    Resolved Pre Formatted Main() Program Template In VS?

    using System; class Program { public static void Main() { Console.WriteLine("Hello World!"); } } How does one automatically generate this code in Visual Studio? Surely there is an auto-filetype that one can select? Don't want to create a snippet, must be a standardized way...
Back
Top Bottom