Getting all categories even with no products under it?

This is very simple to list all the categories, even if they do not have any post associated with those.

You just need to set following property to false in wp_dropdown_categories. method.

'hide_empty' => 0,
'hide_if_empty' => 1

Hope this will solve your problem.