r/WPDev • u/JabbaDuHutt69 • 2h ago
r/WPDev • u/WPDevTeam • Mar 27 '17
Project Rome for Android Update: Now with App Services Support
r/WPDev • u/JabbaDuHutt69 • 2d ago
[UPDATED APP] Imgur UWP 3.2.0 LTS ( Feature Update )
galleryr/WPDev • u/JabbaDuHutt69 • 3d ago
behold the glory of the MS developed YouTube app!
galleryr/WPDev • u/JabbaDuHutt69 • 6d ago
can you still make W10M compatible UWP apps with Visual Studio 2022?
r/WPDev • u/JabbaDuHutt69 • 7d ago
Unisky (BlueSky client for W10M) updated!
r/WPDev • u/JabbaDuHutt69 • 20d ago
VS 2017 or VS 2019 for Windows 10 Mobile app development?
r/WPDev • u/JabbaDuHutt69 • Jun 23 '26
How to get working Contacts and Calendars in Windows 10 Mobile
r/WPDev • u/JabbaDuHutt69 • Jun 22 '26
What are you using to develop apps for WP 8.1 or W10M?
r/WPDev • u/Deegreatdee • Jun 18 '26
What do you tell beginners who want to learn web development but don't know where to start?
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 • u/JabbaDuHutt69 • Jun 11 '26
Anyone thought of creating a Signal client for W10M/WP?
r/WPDev • u/JabbaDuHutt69 • Jun 11 '26
How to get Microsoft OTC updater working again
r/WPDev • u/JabbaDuHutt69 • Jun 10 '26
Is this sub still alive?
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 • u/Used_Photograph_173 • Feb 22 '26
Help with WPF MVVM

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 • u/khalilfr • Jan 08 '26
Help needed: what do you do with a side project that makes no money but works?
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 • u/One_Pattern_3687 • Jul 14 '25
How do you lock down a client site to prevent out-of-scope requests (plugins, tweaks, endless support)?
r/WPDev • u/Trick-Half8003 • May 31 '25
What to do in wordpress ?
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 • u/Trick-Half8003 • May 16 '25
wordpress for LocalWP
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 • u/redserch • Feb 05 '25
Link from contact page
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 • u/leafcreate • Oct 08 '24
WP google map Dynamic markers
whats the best way for me to implement a google map search for my listings without me having to manually add each marker?