Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

The type or namespace name 'StrokeStyle' could not be found

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    The type or namespace name 'StrokeStyle' could not be found

    When drawing arcs with pathgeometry and arc segments in d2d there are some glitches compared to other frameworks. I have created a zoomed version from a arc drawn with d2d and with wpf wpf vs d2d. ...


    StrokeStyle astrokeStyle = new StrokeStyle(d2dFactory, new StrokeStyleProperties()
    {
    DashCap = CapStyle.Flat,
    DashStyle = DashStyle.Solid,
    LineJoin = LineJoin.Miter,
    StartCap = CapStyle.Flat,
    EndCap = CapStyle.Flat,
    MiterLimit = 0,
    DashOffset = 0
    }, new float[0]);​

    This was missing:

    region Using declarations
    using SharpDX;
    using SharpDX.Direct2D1;​

    #2
    Hello PaulMohn,

    When using more advanced items like SharpDX you would need to add namespaces for the items you use, those are not included by default when generating scripts. You can read about using SharpDX in the help guide which shows the namespaces that are used as the name in the left side toolbar.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    553 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    100 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    543 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    546 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X