I had exactly your same problem and I am also using FluidKit. I'm trying to build a form designer where you could drag a control from a Toolbox and drop it into a Grid cell. Here is how I solved it:
I created a grid with two dummy Rectangles in the first row:
<Grid Name="myCanvas" ShowGridLines="True" >
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto" />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Rectangle DragDrop:DragDropManager.DropTargetAdvisor="{StaticResource targetAdvisor1}"
Grid.Row="0" Grid.Column="0" Width="200" Height="100" Fill="Blue" Stroke="Black" StrokeThickness="4" />
<Rectangle DragDrop:DragDropManager.DropTargetAdvisor="{StaticResource targetAdvisor2}"
Grid.Row="0" Grid.Column="1" Width="200" Height="100" Fill="Red" Stroke="Black" StrokeThickness="4" />
</Grid>
It looks as follows:

Notice that I defined a DropTargetAdvisor for each of my rectangles, now the logic is as follows:
- You drag/drop a Control from the Toolbox into a Cell
- The
OnDropCompleted method in the DropTargetAdvisor will then remove the rectangle where you're dropping the control and will get its coordinates from the Grid.Row and Grid.Column Attached properties.
- Once you have the coordinates you can set those Attached properties to your dragged control and add it to your grid.
Here is my DefaultDropTargetAdvisor.OnDropCompleted method:
public void OnDropCompleted(IDataObject obj, Point dropPoint)
{
UIElement dragged_control = ExtractElement(obj);
//Get the current Rectangle
FrameworkElement fe = TargetUI as FrameworkElement;
//Get parent Grid from this Rectangle
Grid g = fe.Parent as Grid;
//Get row and columns of this Rectangle
int row = Grid.GetRow(TargetUI);
int col = Grid.GetColumn(TargetUI);
//Remove Rectangle
g.Children.Remove(TargetUI);
//Set row and column for the dragged control
Grid.SetRow(dragged_control, row);
Grid.SetColumn(dragged_control, col);
//Add dragged control to Grid in that row/col
g.Children.Add(dragged_control);
}