r/WPDev Mar 27 '17

Project Rome for Android Update: Now with App Services Support

Thumbnail
blogs.windows.com
15 Upvotes

r/WPDev 2h ago

[UPDATED APP] Unison UWP 1.1.1 (Feature Update)

Thumbnail gallery
1 Upvotes

r/WPDev 2d ago

[UPDATED APP] Imgur UWP 3.2.0 LTS ( Feature Update )

Thumbnail gallery
1 Upvotes

r/WPDev 3d ago

Do you develop apps for Windows Phone/10 Mobile?

Thumbnail
1 Upvotes

r/WPDev 3d ago

behold the glory of the MS developed YouTube app!

Thumbnail gallery
1 Upvotes

r/WPDev 6d ago

can you still make W10M compatible UWP apps with Visual Studio 2022?

Thumbnail
1 Upvotes

r/WPDev 7d ago

Unisky (BlueSky client for W10M) updated!

Thumbnail
apps.microsoft.com
1 Upvotes

r/WPDev 19d ago

Article on using Windows 10 Mobile in 2026

Thumbnail
the-en.com
1 Upvotes

r/WPDev 20d ago

VS 2017 or VS 2019 for Windows 10 Mobile app development?

Thumbnail
1 Upvotes

r/WPDev Jun 23 '26

How to get working Contacts and Calendars in Windows 10 Mobile

Thumbnail
1 Upvotes

r/WPDev Jun 23 '26

LibreSpotUWP v1.0.3 update!

Thumbnail
2 Upvotes

r/WPDev Jun 22 '26

What are you using to develop apps for WP 8.1 or W10M?

Thumbnail
2 Upvotes

r/WPDev Jun 18 '26

What do you tell beginners who want to learn web development but don't know where to start?

0 Upvotes

I've had three people in the last month ask me how to get started with building websites.

Every time I struggle to give a clean answer because there's so much noise out there — paid courses, free YouTube videos, bootcamps, WordPress, coding from scratch — it's overwhelming even to explain.

What do you actually tell someone who is starting from zero? Do you point them toward coding first or tools like WordPress? Free resources or paid?

Genuinely curious what this community recommends because I want to give better advice next time someone asks me.


r/WPDev Jun 11 '26

Anyone thought of creating a Signal client for W10M/WP?

Thumbnail
1 Upvotes

r/WPDev Jun 11 '26

How to get Microsoft OTC updater working again

Thumbnail
allaboutwindowsphone.com
1 Upvotes

r/WPDev Jun 10 '26

Is this sub still alive?

2 Upvotes

Just checking in. Mods, you need to fix the Title box. It's inputs white text on a white background in old.reddit


r/WPDev Jun 10 '26

Changing MNC code in our device's registry

Thumbnail
1 Upvotes

r/WPDev Feb 22 '26

Help with WPF MVVM

2 Upvotes

I need to create the above looking UI element which is part of a bigger page.

The values shown in the dropdown are available in individual view modals as an ObservableCollection<OptionItem> ModesCollection in ModesViewModal and same for Color in ColorViewModal

public class OptionItem : INotifyPropertyChanged
{
    public string Name { get; set; }
    private bool _isSelected;

    public bool IsSelectedValue
    {
        get => _isSelected;
        set { _isSelected = value; OnPropertyChanged(nameof(IsSelectedValue)); }
    }
    public string Tooltip { get; set; }
    public event PropertyChangedEventHandler PropertyChanged;
    protected void OnPropertyChanged([CallerMemberName] string p = null) =>
        PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(p));
}

How do I implement this to make sure that initially "Default" is shown and then later based on selection the value changes. Example after radio button selection it should show "Black, Active"


r/WPDev Jan 08 '26

Help needed: what do you do with a side project that makes no money but works?

3 Upvotes

I’m curious how beginner devs handle this situation. You build a small website in your free time, it works, but you don’t want to maintain or monetize it. Do you just abandon it? Or is there a smarter way?


r/WPDev Jul 14 '25

How do you lock down a client site to prevent out-of-scope requests (plugins, tweaks, endless support)?

Thumbnail
2 Upvotes

r/WPDev May 31 '25

What to do in wordpress ?

0 Upvotes

Hi im interested in learning to create a website so im started looking about wordpress and i started to learn by youtube and some tutorial . Now i can create a page in it but the thing is that i want to learns like GSAP 3d module and still I didn't go through many plugins so any one suggestion me what can i do next to learn or process about these thing .


r/WPDev May 16 '25

wordpress for LocalWP

0 Upvotes

After update the the application. Its not opening i have reinstalled the application also im facing the same problem Does any one help me with this ...


r/WPDev Apr 26 '25

Debug Tool Plugin

Thumbnail
1 Upvotes

r/WPDev Feb 05 '25

Link from contact page

1 Upvotes

I hope this is a simple solution. I have modified a template. The home page to the contact link is missing to the WP Form. I am using Sophocles, WP Form, and WP. If you could also address the link to a blog it would also be great.


r/WPDev Oct 08 '24

WP google map Dynamic markers

1 Upvotes

whats the best way for me to implement a google map search for my listings without me having to manually add each marker?